pub struct IncomingThirdPartySigned {
pub sender: OwnedUserId,
pub mxid: OwnedUserId,
pub token: String,
pub signatures: BTreeMap<OwnedServerName, BTreeMap<OwnedServerSigningKeyId, String>>,
}Available on crate features
client or server only.Expand description
‘Incoming’ variant of ThirdPartySigned.
Fields
sender: OwnedUserIdThe Matrix ID of the user who issued the invite.
mxid: OwnedUserIdThe Matrix ID of the invitee.
token: StringThe state key of the m.third_party_invite event.
signatures: BTreeMap<OwnedServerName, BTreeMap<OwnedServerSigningKeyId, String>>A signatures object containing a signature of the entire signed object.
Trait Implementations
sourceimpl Debug for IncomingThirdPartySigned
impl Debug for IncomingThirdPartySigned
sourceimpl<'de> Deserialize<'de> for IncomingThirdPartySigned
impl<'de> Deserialize<'de> for IncomingThirdPartySigned
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for IncomingThirdPartySigned
impl Send for IncomingThirdPartySigned
impl Sync for IncomingThirdPartySigned
impl Unpin for IncomingThirdPartySigned
impl UnwindSafe for IncomingThirdPartySigned
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more