Struct ruma_client_api::r0::membership::ThirdPartySigned
source · pub struct ThirdPartySigned {
pub mxid: String,
pub sender: String,
pub signatures: Signatures,
pub token: String,
}Expand description
A signature of an m.third_party_invite token to prove that this user owns a third party
identity which has been invited to the room.
Fields§
§mxid: StringThe Matrix ID of the invitee.
sender: StringThe Matrix ID of the user who issued the invite.
signatures: SignaturesA signatures object containing a signature of the entire signed object.
token: StringThe state key of the m.third_party_invite event.
Trait Implementations§
source§impl Clone for ThirdPartySigned
impl Clone for ThirdPartySigned
source§fn clone(&self) -> ThirdPartySigned
fn clone(&self) -> ThirdPartySigned
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ThirdPartySigned
impl Debug for ThirdPartySigned
source§impl<'de> Deserialize<'de> for ThirdPartySigned
impl<'de> Deserialize<'de> for ThirdPartySigned
source§fn 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