#[non_exhaustive]pub enum AnyMessageLikeEvent {
Show 37 variants
Audio(AudioEvent),
CallAnswer(CallAnswerEvent),
CallInvite(CallInviteEvent),
CallHangup(CallHangupEvent),
CallCandidates(CallCandidatesEvent),
CallNegotiate(CallNegotiateEvent),
CallReject(CallRejectEvent),
CallSdpStreamMetadataChanged(CallSdpStreamMetadataChangedEvent),
CallSelectAnswer(CallSelectAnswerEvent),
Emote(EmoteEvent),
Encrypted(EncryptedEvent),
File(FileEvent),
Image(ImageEvent),
KeyVerificationReady(KeyVerificationReadyEvent),
KeyVerificationStart(KeyVerificationStartEvent),
KeyVerificationCancel(KeyVerificationCancelEvent),
KeyVerificationAccept(KeyVerificationAcceptEvent),
KeyVerificationKey(KeyVerificationKeyEvent),
KeyVerificationMac(KeyVerificationMacEvent),
KeyVerificationDone(KeyVerificationDoneEvent),
Location(LocationEvent),
Message(MessageEvent),
PollStart(PollStartEvent),
UnstablePollStart(UnstablePollStartEvent),
PollResponse(PollResponseEvent),
UnstablePollResponse(UnstablePollResponseEvent),
PollEnd(PollEndEvent),
UnstablePollEnd(UnstablePollEndEvent),
Beacon(BeaconEvent),
Reaction(ReactionEvent),
RoomEncrypted(RoomEncryptedEvent),
RoomMessage(RoomMessageEvent),
RoomRedaction(RoomRedactionEvent),
Sticker(StickerEvent),
Video(VideoEvent),
Voice(VoiceEvent),
CallNotify(CallNotifyEvent),
}
Expand description
Any message-like event.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Audio(AudioEvent)
m.audio
This variant uses the unstable type org.matrix.msc1767.audio
.
This variant can also be deserialized from the m.audio
type.
CallAnswer(CallAnswerEvent)
m.call.answer
CallInvite(CallInviteEvent)
m.call.invite
CallHangup(CallHangupEvent)
m.call.hangup
CallCandidates(CallCandidatesEvent)
m.call.candidates
CallNegotiate(CallNegotiateEvent)
m.call.negotiate
CallReject(CallRejectEvent)
m.call.reject
CallSdpStreamMetadataChanged(CallSdpStreamMetadataChangedEvent)
m.call.sdp_stream_metadata_changed
This variant can also be deserialized from the org.matrix.call.sdp_stream_metadata_changed
type.
CallSelectAnswer(CallSelectAnswerEvent)
m.call.select_answer
Emote(EmoteEvent)
m.emote
This variant uses the unstable type org.matrix.msc1767.emote
.
This variant can also be deserialized from the m.emote
type.
Encrypted(EncryptedEvent)
m.encrypted
This variant uses the unstable type org.matrix.msc1767.encrypted
.
This variant can also be deserialized from the m.encrypted
type.
File(FileEvent)
m.file
This variant uses the unstable type org.matrix.msc1767.file
.
This variant can also be deserialized from the m.file
type.
Image(ImageEvent)
m.image
This variant uses the unstable type org.matrix.msc1767.image
.
This variant can also be deserialized from the m.image
type.
KeyVerificationReady(KeyVerificationReadyEvent)
m.key.verification.ready
KeyVerificationStart(KeyVerificationStartEvent)
m.key.verification.start
KeyVerificationCancel(KeyVerificationCancelEvent)
m.key.verification.cancel
KeyVerificationAccept(KeyVerificationAcceptEvent)
m.key.verification.accept
KeyVerificationKey(KeyVerificationKeyEvent)
m.key.verification.key
KeyVerificationMac(KeyVerificationMacEvent)
m.key.verification.mac
KeyVerificationDone(KeyVerificationDoneEvent)
m.key.verification.done
Location(LocationEvent)
m.location
Message(MessageEvent)
m.message
This variant uses the unstable type org.matrix.msc1767.message
.
This variant can also be deserialized from the m.message
type.
PollStart(PollStartEvent)
m.poll.start
UnstablePollStart(UnstablePollStartEvent)
org.matrix.msc3381.poll.start
PollResponse(PollResponseEvent)
m.poll.response
UnstablePollResponse(UnstablePollResponseEvent)
org.matrix.msc3381.poll.response
PollEnd(PollEndEvent)
m.poll.end
UnstablePollEnd(UnstablePollEndEvent)
org.matrix.msc3381.poll.end
Beacon(BeaconEvent)
m.beacon
This variant uses the unstable type org.matrix.msc3672.beacon
.
This variant can also be deserialized from the m.beacon
type.
Reaction(ReactionEvent)
m.reaction
RoomEncrypted(RoomEncryptedEvent)
m.room.encrypted
RoomMessage(RoomMessageEvent)
m.room.message
RoomRedaction(RoomRedactionEvent)
m.room.redaction
Sticker(StickerEvent)
m.sticker
Video(VideoEvent)
m.video
This variant uses the unstable type org.matrix.msc1767.video
.
This variant can also be deserialized from the m.video
type.
Voice(VoiceEvent)
m.voice
This variant uses the unstable type org.matrix.msc3245.voice.v2
.
This variant can also be deserialized from the m.voice
type.
CallNotify(CallNotifyEvent)
m.call.notify
This variant uses the unstable type org.matrix.msc4075.call.notify
.
This variant can also be deserialized from the m.call.notify
type.
Implementations§
Source§impl AnyMessageLikeEvent
impl AnyMessageLikeEvent
Sourcepub fn event_type(&self) -> MessageLikeEventType
pub fn event_type(&self) -> MessageLikeEventType
Returns the type
of this event.
Sourcepub fn original_content(&self) -> Option<AnyMessageLikeEventContent>
pub fn original_content(&self) -> Option<AnyMessageLikeEventContent>
Returns the content for this event if it is not redacted, or None
if it is.
Sourcepub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
pub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
Returns this event’s origin_server_ts
field.
Sourcepub fn relations(&self) -> BundledMessageLikeRelations<AnySyncMessageLikeEvent>
pub fn relations(&self) -> BundledMessageLikeRelations<AnySyncMessageLikeEvent>
Returns this event’s relations
from inside unsigned
.
Sourcepub fn transaction_id(&self) -> Option<&TransactionId>
pub fn transaction_id(&self) -> Option<&TransactionId>
Returns this event’s transaction_id
from inside unsigned
, if there is one.
Trait Implementations§
Source§impl Clone for AnyMessageLikeEvent
impl Clone for AnyMessageLikeEvent
Source§fn clone(&self) -> AnyMessageLikeEvent
fn clone(&self) -> AnyMessageLikeEvent
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more