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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct {{ .. }} syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
sender: &'a UserId
Expand description

The Matrix ID of the user who issued the invite.

mxid: &'a UserId
Expand description

The Matrix ID of the invitee.

token: &'a str
Expand description

The state key of the m.third_party_invite event.

signatures: BTreeMap<ServerNameBox, BTreeMap<ServerSigningKeyId, String>>
Expand description

A signatures object containing a signature of the entire signed object.

Implementations

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]

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]

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]

Performs copy-assignment from source. Read more

impl<'a> Debug for ThirdPartySigned<'a>[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'a> Outgoing for ThirdPartySigned<'a>[src]

type Incoming = IncomingThirdPartySigned

The ‘Incoming’ variant of Self.

impl<'a> Serialize for ThirdPartySigned<'a>[src]

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
    __S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

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> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[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]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.