Struct ruma_client_api::membership::ThirdPartySigned
source · pub struct ThirdPartySigned {
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
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§
§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.
Implementations§
source§impl ThirdPartySigned
impl ThirdPartySigned
sourcepub fn new(
sender: OwnedUserId,
mxid: OwnedUserId,
token: String,
signatures: BTreeMap<OwnedServerName, BTreeMap<OwnedServerSigningKeyId, String>>
) -> Self
pub fn new(
sender: OwnedUserId,
mxid: OwnedUserId,
token: String,
signatures: BTreeMap<OwnedServerName, BTreeMap<OwnedServerSigningKeyId, String>>
) -> Self
Creates a new ThirdPartySigned from the given sender and invitee user IDs, state key token
and signatures.
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