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§
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