pub struct Decline {
pub from: Option<Jid>,
pub to: Option<Jid>,
pub reason: Option<String>,
}
Expand description
Rejection of a mediated invite.
Fields§
§from: Option<Jid>
Sender.
This is only populated for rejections which have been mediated by a MUC and sent to the inviter.
to: Option<Jid>
Recipient.
This is only populated for requests to decline an invite through a MUC, before forwarding it to the inviter.
reason: Option<String>
The optional reason for the rejection.
Trait Implementations§
Source§impl FromXml for Decline
impl FromXml for Decline
Source§type Builder = DeclineFromXmlBuilder
type Builder = DeclineFromXmlBuilder
A builder type used to construct the element. Read more
Source§fn from_events(
name: QName,
attrs: AttrMap,
) -> Result<Self::Builder, FromEventsError>
fn from_events( name: QName, attrs: AttrMap, ) -> Result<Self::Builder, FromEventsError>
Attempt to initiate the streamed construction of this struct from XML. Read more
impl StructuralPartialEq for Decline
Auto Trait Implementations§
impl Freeze for Decline
impl RefUnwindSafe for Decline
impl Send for Decline
impl Sync for Decline
impl Unpin for Decline
impl UnwindSafe for Decline
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more