Struct ruma_client_api::r0::membership::ThirdPartySigned [−][src]
#[non_exhaustive]pub struct ThirdPartySigned<'a> { pub sender: &'a UserId, pub mxid: &'a UserId, pub token: &'a str, pub signatures: BTreeMap<ServerNameBox, BTreeMap<ServerSigningKeyId, 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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.sender: &'a UserIdThe Matrix ID of the user who issued the invite.
mxid: &'a UserIdThe Matrix ID of the invitee.
token: &'a strThe state key of the m.third_party_invite event.
signatures: BTreeMap<ServerNameBox, BTreeMap<ServerSigningKeyId, String>>A signatures object containing a signature of the entire signed object.
Implementations
impl<'a> ThirdPartySigned<'a>[src]
impl<'a> ThirdPartySigned<'a>[src]pub fn new(
sender: &'a UserId,
mxid: &'a UserId,
token: &'a str,
signatures: BTreeMap<ServerNameBox, BTreeMap<ServerSigningKeyId, String>>
) -> Self[src]
pub fn new(
sender: &'a UserId,
mxid: &'a UserId,
token: &'a str,
signatures: BTreeMap<ServerNameBox, BTreeMap<ServerSigningKeyId, String>>
) -> Self[src]Creates a new ThirdPartySigned from the given sender and invitee user IDs, state key token
and signatures.
Trait Implementations
impl<'a> Clone for ThirdPartySigned<'a>[src]
impl<'a> Clone for ThirdPartySigned<'a>[src]fn clone(&self) -> ThirdPartySigned<'a>[src]
fn clone(&self) -> ThirdPartySigned<'a>[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl<'a> Debug for ThirdPartySigned<'a>[src]
impl<'a> Debug for ThirdPartySigned<'a>[src]impl<'a> Outgoing for ThirdPartySigned<'a>[src]
impl<'a> Outgoing for ThirdPartySigned<'a>[src]type Incoming = IncomingThirdPartySigned
type Incoming = IncomingThirdPartySignedThe ‘Incoming’ variant of Self.
impl<'a> Serialize for ThirdPartySigned<'a>[src]
impl<'a> Serialize for ThirdPartySigned<'a>[src]Auto Trait Implementations
impl<'a> RefUnwindSafe for ThirdPartySigned<'a>
impl<'a> Send for ThirdPartySigned<'a>
impl<'a> Sync for ThirdPartySigned<'a>
impl<'a> Unpin for ThirdPartySigned<'a>
impl<'a> UnwindSafe for ThirdPartySigned<'a>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more