logo
#[non_exhaustive]
pub struct RoomThirdPartyInviteEventContent { pub display_name: String, pub key_validity_url: String, pub public_key: Base64, pub public_keys: Option<Vec<PublicKey>>, }
Expand description

The content of an m.room.third_party_invite event.

An invitation to a room issued to a third party identifier, rather than a matrix user ID.

Acts as an m.room.member invite event, where there isn’t a target user_id to invite. This event contains a token and a public key whose private key must be used to sign the token. Any user who can present that signature may use this invitation to join the target 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.
display_name: String

A user-readable string which represents the user who has been invited.

If you activate the compat feature, this field being absent in JSON will result in an empty string here during deserialization.

key_validity_url: String

A URL which can be fetched to validate whether the key has been revoked.

If you activate the compat feature, this field being absent in JSON will result in an empty string here during deserialization.

public_key: Base64

A base64-encoded Ed25519 key with which the token must be signed.

If you activate the compat feature, this field being absent in JSON will result in an empty string here during deserialization.

public_keys: Option<Vec<PublicKey>>

Keys with which the token may be signed.

Implementations

Creates a new RoomThirdPartyInviteEventContent with the given display name, key validity url and public key.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

The Rust enum for the event kind’s known types.

Get the event’s type, like m.room.message.

Converts to this type from the input type.

The redacted form of the event’s content.

Transform self into a redacted form (removing most or all fields) according to the spec. Read more

Serialize this value into the given Serde serializer. Read more

The type of the event’s state_key field.

The event’s “kind”. Read more

The event type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more