logo
#[non_exhaustive]
pub enum AnySyncMessageLikeEvent {
Show 17 variants CallAnswer(SyncCallAnswerEvent), CallInvite(SyncCallInviteEvent), CallHangup(SyncCallHangupEvent), CallCandidates(SyncCallCandidatesEvent), KeyVerificationReady(SyncKeyVerificationReadyEvent), KeyVerificationStart(SyncKeyVerificationStartEvent), KeyVerificationCancel(SyncKeyVerificationCancelEvent), KeyVerificationAccept(SyncKeyVerificationAcceptEvent), KeyVerificationKey(SyncKeyVerificationKeyEvent), KeyVerificationMac(SyncKeyVerificationMacEvent), KeyVerificationDone(SyncKeyVerificationDoneEvent), Reaction(SyncReactionEvent), RoomEncrypted(SyncRoomEncryptedEvent), RoomMessage(SyncRoomMessageEvent), RoomMessageFeedback(SyncRoomMessageFeedbackEvent), RoomRedaction(SyncRoomRedactionEvent), Sticker(SyncStickerEvent), // 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(SyncCallAnswerEvent)

m.call.answer

CallInvite(SyncCallInviteEvent)

m.call.invite

CallHangup(SyncCallHangupEvent)

m.call.hangup

CallCandidates(SyncCallCandidatesEvent)

m.call.candidates

KeyVerificationReady(SyncKeyVerificationReadyEvent)

m.key.verification.ready

KeyVerificationStart(SyncKeyVerificationStartEvent)

m.key.verification.start

KeyVerificationCancel(SyncKeyVerificationCancelEvent)

m.key.verification.cancel

KeyVerificationAccept(SyncKeyVerificationAcceptEvent)

m.key.verification.accept

KeyVerificationKey(SyncKeyVerificationKeyEvent)

m.key.verification.key

KeyVerificationMac(SyncKeyVerificationMacEvent)

m.key.verification.mac

KeyVerificationDone(SyncKeyVerificationDoneEvent)

m.key.verification.done

Reaction(SyncReactionEvent)

m.reaction

RoomEncrypted(SyncRoomEncryptedEvent)

m.room.encrypted

RoomMessage(SyncRoomMessageEvent)

m.room.message

RoomMessageFeedback(SyncRoomMessageFeedbackEvent)

m.room.message.feedback

RoomRedaction(SyncRoomRedactionEvent)

m.room.redaction

Sticker(SyncStickerEvent)

m.sticker

Implementations

Returns the type of this event.

Returns the content for this event if it is not redacted, or None if it is.

Returns this event’s origin_server_ts field.

Returns this event’s event_id field.

Returns this event’s sender field.

Returns this event’s transaction_id from inside unsigned, if there is one.

Convert this sync event into a full event (one with a room_id field).

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

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.

The redacted form of the event.

Transforms self into a redacted form (removing most fields) according to the spec. 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