logo
pub enum AnyMessageLikeEventContent {
Show 26 variants Audio(AudioEventContent), CallAnswer(CallAnswerEventContent), CallInvite(CallInviteEventContent), CallHangup(CallHangupEventContent), CallCandidates(CallCandidatesEventContent), Emote(EmoteEventContent), File(FileEventContent), Image(ImageEventContent), KeyVerificationReady(KeyVerificationReadyEventContent), KeyVerificationStart(KeyVerificationStartEventContent), KeyVerificationCancel(KeyVerificationCancelEventContent), KeyVerificationAccept(KeyVerificationAcceptEventContent), KeyVerificationKey(KeyVerificationKeyEventContent), KeyVerificationMac(KeyVerificationMacEventContent), KeyVerificationDone(KeyVerificationDoneEventContent), Location(LocationEventContent), Message(MessageEventContent), Notice(NoticeEventContent), Reaction(ReactionEventContent), RoomEncrypted(RoomEncryptedEventContent), RoomMessage(RoomMessageEventContent), RoomMessageFeedback(RoomMessageFeedbackEventContent), RoomRedaction(RoomRedactionEventContent), Sticker(StickerEventContent), Video(VideoEventContent), Voice(VoiceEventContent), // some variants omitted
}
Available on crate feature events only.
Expand description

Any message-like event.

Variants

Audio(AudioEventContent)

Available on crate feature unstable-msc3246 only.

m.audio

CallAnswer(CallAnswerEventContent)

m.call.answer

CallInvite(CallInviteEventContent)

m.call.invite

CallHangup(CallHangupEventContent)

m.call.hangup

CallCandidates(CallCandidatesEventContent)

m.call.candidates

Emote(EmoteEventContent)

Available on crate feature unstable-msc1767 only.

m.emote

File(FileEventContent)

Available on crate feature unstable-msc3551 only.

m.file

Image(ImageEventContent)

Available on crate feature unstable-msc3552 only.

m.image

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

Location(LocationEventContent)

Available on crate feature unstable-msc3488 only.

m.location

Message(MessageEventContent)

Available on crate feature unstable-msc1767 only.

m.message

Notice(NoticeEventContent)

Available on crate feature unstable-msc1767 only.

m.notice

Reaction(ReactionEventContent)

Available on crate feature unstable-msc2677 only.

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

Video(VideoEventContent)

Available on crate feature unstable-msc3553 only.

m.video

Voice(VoiceEventContent)

Available on crate feature unstable-msc3245 only.

m.voice

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

Available on crate feature events only.

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

Available on crate feature events only.

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.

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

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

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