pub enum AnyMessageLikeEvent {
Show 35 variants Audio(AudioEvent), CallAnswer(CallAnswerEvent), CallInvite(CallInviteEvent), CallHangup(CallHangupEvent), CallCandidates(CallCandidatesEvent), CallNegotiate(CallNegotiateEvent), CallReject(CallRejectEvent), 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), Reaction(ReactionEvent), RoomEncrypted(RoomEncryptedEvent), RoomMessage(RoomMessageEvent), RoomRedaction(RoomRedactionEvent), Sticker(StickerEvent), Video(VideoEvent), Voice(VoiceEvent), CallNotify(CallNotifyEvent), // some variants omitted
}
Expand description

Any message-like event.

Variants§

§

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

§

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

§

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

source

pub fn event_type(&self) -> MessageLikeEventType

Returns the type of this event.

source

pub fn original_content(&self) -> Option<AnyMessageLikeEventContent>

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

source

pub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch

Returns this event’s origin_server_ts field.

source

pub fn room_id(&self) -> &RoomId

Returns this event’s room_id field.

source

pub fn event_id(&self) -> &EventId

Returns this event’s event_id field.

source

pub fn sender(&self) -> &UserId

Returns this event’s sender field.

source

pub fn relations(&self) -> BundledMessageLikeRelations<AnySyncMessageLikeEvent>

Returns this event’s relations from inside unsigned.

source

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

source§

fn clone(&self) -> AnyMessageLikeEvent

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AnyMessageLikeEvent

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for AnyMessageLikeEvent

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<AnyMessageLikeEvent> for AnySyncMessageLikeEvent

source§

fn from(event: AnyMessageLikeEvent) -> Self

Converts to this type from the input type.
source§

impl From<AnyMessageLikeEvent> for AnyTimelineEvent

source§

fn from(c: AnyMessageLikeEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<AudioEventContent>> for AnyMessageLikeEvent

source§

fn from(c: AudioEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<CallAnswerEventContent>> for AnyMessageLikeEvent

source§

fn from(c: CallAnswerEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<CallCandidatesEventContent>> for AnyMessageLikeEvent

source§

fn from(c: CallCandidatesEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<CallHangupEventContent>> for AnyMessageLikeEvent

source§

fn from(c: CallHangupEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<CallInviteEventContent>> for AnyMessageLikeEvent

source§

fn from(c: CallInviteEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<CallNegotiateEventContent>> for AnyMessageLikeEvent

source§

fn from(c: CallNegotiateEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<CallNotifyEventContent>> for AnyMessageLikeEvent

source§

fn from(c: CallNotifyEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<CallRejectEventContent>> for AnyMessageLikeEvent

source§

fn from(c: CallRejectEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<CallSelectAnswerEventContent>> for AnyMessageLikeEvent

source§

fn from(c: CallSelectAnswerEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<EmoteEventContent>> for AnyMessageLikeEvent

source§

fn from(c: EmoteEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<EncryptedEventContent>> for AnyMessageLikeEvent

source§

fn from(c: EncryptedEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<FileEventContent>> for AnyMessageLikeEvent

source§

fn from(c: FileEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<ImageEventContent>> for AnyMessageLikeEvent

source§

fn from(c: ImageEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<KeyVerificationAcceptEventContent>> for AnyMessageLikeEvent

source§

fn from(c: KeyVerificationAcceptEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<KeyVerificationCancelEventContent>> for AnyMessageLikeEvent

source§

fn from(c: KeyVerificationCancelEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<KeyVerificationDoneEventContent>> for AnyMessageLikeEvent

source§

fn from(c: KeyVerificationDoneEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<KeyVerificationKeyEventContent>> for AnyMessageLikeEvent

source§

fn from(c: KeyVerificationKeyEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<KeyVerificationMacEventContent>> for AnyMessageLikeEvent

source§

fn from(c: KeyVerificationMacEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<KeyVerificationReadyEventContent>> for AnyMessageLikeEvent

source§

fn from(c: KeyVerificationReadyEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<KeyVerificationStartEventContent>> for AnyMessageLikeEvent

source§

fn from(c: KeyVerificationStartEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<LocationEventContent>> for AnyMessageLikeEvent

source§

fn from(c: LocationEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<MessageEventContent>> for AnyMessageLikeEvent

source§

fn from(c: MessageEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<PollEndEventContent>> for AnyMessageLikeEvent

source§

fn from(c: PollEndEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<PollResponseEventContent>> for AnyMessageLikeEvent

source§

fn from(c: PollResponseEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<PollStartEventContent>> for AnyMessageLikeEvent

source§

fn from(c: PollStartEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<ReactionEventContent>> for AnyMessageLikeEvent

source§

fn from(c: ReactionEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<RoomEncryptedEventContent>> for AnyMessageLikeEvent

source§

fn from(c: RoomEncryptedEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<RoomMessageEventContent>> for AnyMessageLikeEvent

source§

fn from(c: RoomMessageEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<StickerEventContent>> for AnyMessageLikeEvent

source§

fn from(c: StickerEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<UnstablePollEndEventContent>> for AnyMessageLikeEvent

source§

fn from(c: UnstablePollEndEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<UnstablePollResponseEventContent>> for AnyMessageLikeEvent

source§

fn from(c: UnstablePollResponseEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<UnstablePollStartEventContent>> for AnyMessageLikeEvent

source§

fn from(c: UnstablePollStartEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<VideoEventContent>> for AnyMessageLikeEvent

source§

fn from(c: VideoEvent) -> Self

Converts to this type from the input type.
source§

impl From<MessageLikeEvent<VoiceEventContent>> for AnyMessageLikeEvent

source§

fn from(c: VoiceEvent) -> Self

Converts to this type from the input type.
source§

impl From<RoomRedactionEvent> for AnyMessageLikeEvent

source§

fn from(c: RoomRedactionEvent) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,