#[non_exhaustive]pub enum AnyMessageLikeEvent {
Show 39 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),
RtcNotification(RtcNotificationEvent),
RtcDecline(RtcDeclineEvent),
}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.
RtcNotification(RtcNotificationEvent)
m.rtc.notification
This variant uses the unstable type org.matrix.msc4075.rtc.notification.
This variant can also be deserialized from the m.rtc.notification type.
RtcDecline(RtcDeclineEvent)
m.rtc.decline
This variant uses the unstable type org.matrix.msc4310.rtc.decline.
This variant can also be deserialized from the m.rtc.decline 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 is_redacted(&self) -> bool
pub fn is_redacted(&self) -> bool
Returns whether this event is redacted.
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 moreSource§impl Debug for AnyMessageLikeEvent
impl Debug for AnyMessageLikeEvent
Source§impl<'de> Deserialize<'de> for AnyMessageLikeEvent
impl<'de> Deserialize<'de> for AnyMessageLikeEvent
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Source§impl From<AnyMessageLikeEvent> for AnySyncMessageLikeEvent
impl From<AnyMessageLikeEvent> for AnySyncMessageLikeEvent
Source§fn from(event: AnyMessageLikeEvent) -> Self
fn from(event: AnyMessageLikeEvent) -> Self
Source§impl From<AnyMessageLikeEvent> for AnyTimelineEvent
impl From<AnyMessageLikeEvent> for AnyTimelineEvent
Source§fn from(c: AnyMessageLikeEvent) -> Self
fn from(c: AnyMessageLikeEvent) -> Self
Source§impl From<MessageLikeEvent<AudioEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3927 only.
impl From<MessageLikeEvent<AudioEventContent>> for AnyMessageLikeEvent
unstable-msc3927 only.Source§fn from(c: AudioEvent) -> Self
fn from(c: AudioEvent) -> Self
Source§impl From<MessageLikeEvent<BeaconEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3489 only.
impl From<MessageLikeEvent<BeaconEventContent>> for AnyMessageLikeEvent
unstable-msc3489 only.Source§fn from(c: BeaconEvent) -> Self
fn from(c: BeaconEvent) -> Self
Source§impl From<MessageLikeEvent<CallAnswerEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<CallAnswerEventContent>> for AnyMessageLikeEvent
Source§fn from(c: CallAnswerEvent) -> Self
fn from(c: CallAnswerEvent) -> Self
Source§impl From<MessageLikeEvent<CallCandidatesEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<CallCandidatesEventContent>> for AnyMessageLikeEvent
Source§fn from(c: CallCandidatesEvent) -> Self
fn from(c: CallCandidatesEvent) -> Self
Source§impl From<MessageLikeEvent<CallHangupEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<CallHangupEventContent>> for AnyMessageLikeEvent
Source§fn from(c: CallHangupEvent) -> Self
fn from(c: CallHangupEvent) -> Self
Source§impl From<MessageLikeEvent<CallInviteEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<CallInviteEventContent>> for AnyMessageLikeEvent
Source§fn from(c: CallInviteEvent) -> Self
fn from(c: CallInviteEvent) -> Self
Source§impl From<MessageLikeEvent<CallNegotiateEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<CallNegotiateEventContent>> for AnyMessageLikeEvent
Source§fn from(c: CallNegotiateEvent) -> Self
fn from(c: CallNegotiateEvent) -> Self
Source§impl From<MessageLikeEvent<CallNotifyEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc4075 only.
impl From<MessageLikeEvent<CallNotifyEventContent>> for AnyMessageLikeEvent
unstable-msc4075 only.Source§fn from(c: CallNotifyEvent) -> Self
fn from(c: CallNotifyEvent) -> Self
Source§impl From<MessageLikeEvent<CallRejectEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<CallRejectEventContent>> for AnyMessageLikeEvent
Source§fn from(c: CallRejectEvent) -> Self
fn from(c: CallRejectEvent) -> Self
Source§impl From<MessageLikeEvent<CallSdpStreamMetadataChangedEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<CallSdpStreamMetadataChangedEventContent>> for AnyMessageLikeEvent
Source§fn from(c: CallSdpStreamMetadataChangedEvent) -> Self
fn from(c: CallSdpStreamMetadataChangedEvent) -> Self
Source§impl From<MessageLikeEvent<CallSelectAnswerEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<CallSelectAnswerEventContent>> for AnyMessageLikeEvent
Source§fn from(c: CallSelectAnswerEvent) -> Self
fn from(c: CallSelectAnswerEvent) -> Self
Source§impl From<MessageLikeEvent<EmoteEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3954 only.
impl From<MessageLikeEvent<EmoteEventContent>> for AnyMessageLikeEvent
unstable-msc3954 only.Source§fn from(c: EmoteEvent) -> Self
fn from(c: EmoteEvent) -> Self
Source§impl From<MessageLikeEvent<EncryptedEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3956 only.
impl From<MessageLikeEvent<EncryptedEventContent>> for AnyMessageLikeEvent
unstable-msc3956 only.Source§fn from(c: EncryptedEvent) -> Self
fn from(c: EncryptedEvent) -> Self
Source§impl From<MessageLikeEvent<FileEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3551 only.
impl From<MessageLikeEvent<FileEventContent>> for AnyMessageLikeEvent
unstable-msc3551 only.Source§impl From<MessageLikeEvent<ImageEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3552 only.
impl From<MessageLikeEvent<ImageEventContent>> for AnyMessageLikeEvent
unstable-msc3552 only.Source§fn from(c: ImageEvent) -> Self
fn from(c: ImageEvent) -> Self
Source§impl From<MessageLikeEvent<KeyVerificationAcceptEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<KeyVerificationAcceptEventContent>> for AnyMessageLikeEvent
Source§fn from(c: KeyVerificationAcceptEvent) -> Self
fn from(c: KeyVerificationAcceptEvent) -> Self
Source§impl From<MessageLikeEvent<KeyVerificationCancelEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<KeyVerificationCancelEventContent>> for AnyMessageLikeEvent
Source§fn from(c: KeyVerificationCancelEvent) -> Self
fn from(c: KeyVerificationCancelEvent) -> Self
Source§impl From<MessageLikeEvent<KeyVerificationDoneEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<KeyVerificationDoneEventContent>> for AnyMessageLikeEvent
Source§fn from(c: KeyVerificationDoneEvent) -> Self
fn from(c: KeyVerificationDoneEvent) -> Self
Source§impl From<MessageLikeEvent<KeyVerificationKeyEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<KeyVerificationKeyEventContent>> for AnyMessageLikeEvent
Source§fn from(c: KeyVerificationKeyEvent) -> Self
fn from(c: KeyVerificationKeyEvent) -> Self
Source§impl From<MessageLikeEvent<KeyVerificationMacEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<KeyVerificationMacEventContent>> for AnyMessageLikeEvent
Source§fn from(c: KeyVerificationMacEvent) -> Self
fn from(c: KeyVerificationMacEvent) -> Self
Source§impl From<MessageLikeEvent<KeyVerificationReadyEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<KeyVerificationReadyEventContent>> for AnyMessageLikeEvent
Source§fn from(c: KeyVerificationReadyEvent) -> Self
fn from(c: KeyVerificationReadyEvent) -> Self
Source§impl From<MessageLikeEvent<KeyVerificationStartEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<KeyVerificationStartEventContent>> for AnyMessageLikeEvent
Source§fn from(c: KeyVerificationStartEvent) -> Self
fn from(c: KeyVerificationStartEvent) -> Self
Source§impl From<MessageLikeEvent<LocationEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3488 only.
impl From<MessageLikeEvent<LocationEventContent>> for AnyMessageLikeEvent
unstable-msc3488 only.Source§fn from(c: LocationEvent) -> Self
fn from(c: LocationEvent) -> Self
Source§impl From<MessageLikeEvent<MessageEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc1767 only.
impl From<MessageLikeEvent<MessageEventContent>> for AnyMessageLikeEvent
unstable-msc1767 only.Source§fn from(c: MessageEvent) -> Self
fn from(c: MessageEvent) -> Self
Source§impl From<MessageLikeEvent<PollEndEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3381 only.
impl From<MessageLikeEvent<PollEndEventContent>> for AnyMessageLikeEvent
unstable-msc3381 only.Source§fn from(c: PollEndEvent) -> Self
fn from(c: PollEndEvent) -> Self
Source§impl From<MessageLikeEvent<PollResponseEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3381 only.
impl From<MessageLikeEvent<PollResponseEventContent>> for AnyMessageLikeEvent
unstable-msc3381 only.Source§fn from(c: PollResponseEvent) -> Self
fn from(c: PollResponseEvent) -> Self
Source§impl From<MessageLikeEvent<PollStartEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3381 only.
impl From<MessageLikeEvent<PollStartEventContent>> for AnyMessageLikeEvent
unstable-msc3381 only.Source§fn from(c: PollStartEvent) -> Self
fn from(c: PollStartEvent) -> Self
Source§impl From<MessageLikeEvent<ReactionEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<ReactionEventContent>> for AnyMessageLikeEvent
Source§fn from(c: ReactionEvent) -> Self
fn from(c: ReactionEvent) -> Self
Source§impl From<MessageLikeEvent<RoomEncryptedEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<RoomEncryptedEventContent>> for AnyMessageLikeEvent
Source§fn from(c: RoomEncryptedEvent) -> Self
fn from(c: RoomEncryptedEvent) -> Self
Source§impl From<MessageLikeEvent<RoomMessageEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<RoomMessageEventContent>> for AnyMessageLikeEvent
Source§fn from(c: RoomMessageEvent) -> Self
fn from(c: RoomMessageEvent) -> Self
Source§impl From<MessageLikeEvent<RtcDeclineEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc4310 only.
impl From<MessageLikeEvent<RtcDeclineEventContent>> for AnyMessageLikeEvent
unstable-msc4310 only.Source§fn from(c: RtcDeclineEvent) -> Self
fn from(c: RtcDeclineEvent) -> Self
Source§impl From<MessageLikeEvent<RtcNotificationEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc4075 only.
impl From<MessageLikeEvent<RtcNotificationEventContent>> for AnyMessageLikeEvent
unstable-msc4075 only.Source§fn from(c: RtcNotificationEvent) -> Self
fn from(c: RtcNotificationEvent) -> Self
Source§impl From<MessageLikeEvent<StickerEventContent>> for AnyMessageLikeEvent
impl From<MessageLikeEvent<StickerEventContent>> for AnyMessageLikeEvent
Source§fn from(c: StickerEvent) -> Self
fn from(c: StickerEvent) -> Self
Source§impl From<MessageLikeEvent<UnstablePollEndEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3381 only.
impl From<MessageLikeEvent<UnstablePollEndEventContent>> for AnyMessageLikeEvent
unstable-msc3381 only.Source§fn from(c: UnstablePollEndEvent) -> Self
fn from(c: UnstablePollEndEvent) -> Self
Source§impl From<MessageLikeEvent<UnstablePollResponseEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3381 only.
impl From<MessageLikeEvent<UnstablePollResponseEventContent>> for AnyMessageLikeEvent
unstable-msc3381 only.Source§fn from(c: UnstablePollResponseEvent) -> Self
fn from(c: UnstablePollResponseEvent) -> Self
Source§impl From<MessageLikeEvent<UnstablePollStartEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3381 only.
impl From<MessageLikeEvent<UnstablePollStartEventContent>> for AnyMessageLikeEvent
unstable-msc3381 only.Source§fn from(c: UnstablePollStartEvent) -> Self
fn from(c: UnstablePollStartEvent) -> Self
Source§impl From<MessageLikeEvent<VideoEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3553 only.
impl From<MessageLikeEvent<VideoEventContent>> for AnyMessageLikeEvent
unstable-msc3553 only.Source§fn from(c: VideoEvent) -> Self
fn from(c: VideoEvent) -> Self
Source§impl From<MessageLikeEvent<VoiceEventContent>> for AnyMessageLikeEvent
Available on crate feature unstable-msc3245 only.
impl From<MessageLikeEvent<VoiceEventContent>> for AnyMessageLikeEvent
unstable-msc3245 only.