logo
#[non_exhaustive]
pub enum AnyMessageLikeEventContent {
Show 17 variants CallAnswer(CallAnswerEventContent), CallInvite(CallInviteEventContent), CallHangup(CallHangupEventContent), CallCandidates(CallCandidatesEventContent), KeyVerificationReady(KeyVerificationReadyEventContent), KeyVerificationStart(KeyVerificationStartEventContent), KeyVerificationCancel(KeyVerificationCancelEventContent), KeyVerificationAccept(KeyVerificationAcceptEventContent), KeyVerificationKey(KeyVerificationKeyEventContent), KeyVerificationMac(KeyVerificationMacEventContent), KeyVerificationDone(KeyVerificationDoneEventContent), Reaction(ReactionEventContent), RoomEncrypted(RoomEncryptedEventContent), RoomMessage(RoomMessageEventContent), RoomMessageFeedback(RoomMessageFeedbackEventContent), RoomRedaction(RoomRedactionEventContent), Sticker(StickerEventContent), // some variants omitted
}
Expand description

Any message-like event.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

CallAnswer(CallAnswerEventContent)

m.call.answer

CallInvite(CallInviteEventContent)

m.call.invite

CallHangup(CallHangupEventContent)

m.call.hangup

CallCandidates(CallCandidatesEventContent)

m.call.candidates

KeyVerificationReady(KeyVerificationReadyEventContent)

m.key.verification.ready

KeyVerificationStart(KeyVerificationStartEventContent)

m.key.verification.start

KeyVerificationCancel(KeyVerificationCancelEventContent)

m.key.verification.cancel

KeyVerificationAccept(KeyVerificationAcceptEventContent)

m.key.verification.accept

KeyVerificationKey(KeyVerificationKeyEventContent)

m.key.verification.key

KeyVerificationMac(KeyVerificationMacEventContent)

m.key.verification.mac

KeyVerificationDone(KeyVerificationDoneEventContent)

m.key.verification.done

Reaction(ReactionEventContent)

m.reaction

RoomEncrypted(RoomEncryptedEventContent)

m.room.encrypted

RoomMessage(RoomMessageEventContent)

m.room.message

RoomMessageFeedback(RoomMessageFeedbackEventContent)

m.room.message.feedback

RoomRedaction(RoomRedactionEventContent)

m.room.redaction

Sticker(StickerEventContent)

m.sticker

Implementations

Get a copy of the event’s m.relates_to field, if any.

This is a helper function intended for encryption. There should not be a reason to access m.relates_to without first destructuring an AnyMessageLikeEventContent otherwise.

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

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.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Serialize this value into the given Serde serializer. Read more

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