pub enum AnySyncMessageLikeEvent {
Show 31 variants Audio(SyncMessageLikeEvent<AudioEventContent>), CallAnswer(SyncMessageLikeEvent<CallAnswerEventContent>), CallInvite(SyncMessageLikeEvent<CallInviteEventContent>), CallHangup(SyncMessageLikeEvent<CallHangupEventContent>), CallCandidates(SyncMessageLikeEvent<CallCandidatesEventContent>), CallNegotiate(SyncMessageLikeEvent<CallNegotiateEventContent>), CallReject(SyncMessageLikeEvent<CallRejectEventContent>), CallSelectAnswer(SyncMessageLikeEvent<CallSelectAnswerEventContent>), Emote(SyncMessageLikeEvent<EmoteEventContent>), File(SyncMessageLikeEvent<FileEventContent>), Image(SyncMessageLikeEvent<ImageEventContent>), KeyVerificationReady(SyncMessageLikeEvent<KeyVerificationReadyEventContent>), KeyVerificationStart(SyncMessageLikeEvent<KeyVerificationStartEventContent>), KeyVerificationCancel(SyncMessageLikeEvent<KeyVerificationCancelEventContent>), KeyVerificationAccept(SyncMessageLikeEvent<KeyVerificationAcceptEventContent>), KeyVerificationKey(SyncMessageLikeEvent<KeyVerificationKeyEventContent>), KeyVerificationMac(SyncMessageLikeEvent<KeyVerificationMacEventContent>), KeyVerificationDone(SyncMessageLikeEvent<KeyVerificationDoneEventContent>), Location(SyncMessageLikeEvent<LocationEventContent>), Message(SyncMessageLikeEvent<MessageEventContent>), Notice(SyncMessageLikeEvent<NoticeEventContent>), PollStart(SyncMessageLikeEvent<PollStartEventContent>), PollResponse(SyncMessageLikeEvent<PollResponseEventContent>), PollEnd(SyncMessageLikeEvent<PollEndEventContent>), Reaction(SyncMessageLikeEvent<ReactionEventContent>), RoomEncrypted(SyncMessageLikeEvent<RoomEncryptedEventContent>), RoomMessage(SyncMessageLikeEvent<RoomMessageEventContent>), RoomRedaction(SyncRoomRedactionEvent), Sticker(SyncMessageLikeEvent<StickerEventContent>), Video(SyncMessageLikeEvent<VideoEventContent>), Voice(SyncMessageLikeEvent<VoiceEventContent>), // some variants omitted
}
Available on crate feature events only.
Expand description

Any message-like event.

Variants§

§

Audio(SyncMessageLikeEvent<AudioEventContent>)

Available on crate feature unstable-msc3246 only.

m.audio

§

CallAnswer(SyncMessageLikeEvent<CallAnswerEventContent>)

m.call.answer

§

CallInvite(SyncMessageLikeEvent<CallInviteEventContent>)

m.call.invite

§

CallHangup(SyncMessageLikeEvent<CallHangupEventContent>)

m.call.hangup

§

CallCandidates(SyncMessageLikeEvent<CallCandidatesEventContent>)

m.call.candidates

§

CallNegotiate(SyncMessageLikeEvent<CallNegotiateEventContent>)

Available on crate feature unstable-msc2746 only.

m.call.negotiate

§

CallReject(SyncMessageLikeEvent<CallRejectEventContent>)

Available on crate feature unstable-msc2746 only.

m.call.reject

§

CallSelectAnswer(SyncMessageLikeEvent<CallSelectAnswerEventContent>)

Available on crate feature unstable-msc2746 only.

m.call.select_answer

§

Emote(SyncMessageLikeEvent<EmoteEventContent>)

Available on crate feature unstable-msc1767 only.

m.emote

§

File(SyncMessageLikeEvent<FileEventContent>)

Available on crate feature unstable-msc3551 only.

m.file

§

Image(SyncMessageLikeEvent<ImageEventContent>)

Available on crate feature unstable-msc3552 only.

m.image

§

KeyVerificationReady(SyncMessageLikeEvent<KeyVerificationReadyEventContent>)

m.key.verification.ready

§

KeyVerificationStart(SyncMessageLikeEvent<KeyVerificationStartEventContent>)

m.key.verification.start

§

KeyVerificationCancel(SyncMessageLikeEvent<KeyVerificationCancelEventContent>)

m.key.verification.cancel

§

KeyVerificationAccept(SyncMessageLikeEvent<KeyVerificationAcceptEventContent>)

m.key.verification.accept

§

KeyVerificationKey(SyncMessageLikeEvent<KeyVerificationKeyEventContent>)

m.key.verification.key

§

KeyVerificationMac(SyncMessageLikeEvent<KeyVerificationMacEventContent>)

m.key.verification.mac

§

KeyVerificationDone(SyncMessageLikeEvent<KeyVerificationDoneEventContent>)

m.key.verification.done

§

Location(SyncMessageLikeEvent<LocationEventContent>)

Available on crate feature unstable-msc3488 only.

m.location

§

Message(SyncMessageLikeEvent<MessageEventContent>)

Available on crate feature unstable-msc1767 only.

m.message

§

Notice(SyncMessageLikeEvent<NoticeEventContent>)

Available on crate feature unstable-msc1767 only.

m.notice

§

PollStart(SyncMessageLikeEvent<PollStartEventContent>)

Available on crate feature unstable-msc3381 only.

m.poll.start

This variant uses the unstable type org.matrix.msc3381.poll.start.

This variant can also be deserialized from the m.poll.start type.

§

PollResponse(SyncMessageLikeEvent<PollResponseEventContent>)

Available on crate feature unstable-msc3381 only.

m.poll.response

This variant uses the unstable type org.matrix.msc3381.poll.response.

This variant can also be deserialized from the m.poll.response type.

§

PollEnd(SyncMessageLikeEvent<PollEndEventContent>)

Available on crate feature unstable-msc3381 only.

m.poll.end

This variant uses the unstable type org.matrix.msc3381.poll.end.

This variant can also be deserialized from the m.poll.end type.

§

Reaction(SyncMessageLikeEvent<ReactionEventContent>)

Available on crate feature unstable-msc2677 only.

m.reaction

§

RoomEncrypted(SyncMessageLikeEvent<RoomEncryptedEventContent>)

m.room.encrypted

§

RoomMessage(SyncMessageLikeEvent<RoomMessageEventContent>)

m.room.message

§

RoomRedaction(SyncRoomRedactionEvent)

m.room.redaction

§

Sticker(SyncMessageLikeEvent<StickerEventContent>)

m.sticker

§

Video(SyncMessageLikeEvent<VideoEventContent>)

Available on crate feature unstable-msc3553 only.

m.video

§

Voice(SyncMessageLikeEvent<VoiceEventContent>)

Available on crate feature unstable-msc3245 only.

m.voice

Implementations§

source§

impl AnySyncMessageLikeEvent

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 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 transaction_id(&self) -> Option<&TransactionId>

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

source

pub fn relations(&self) -> &BundledRelations

Returns this event’s relations from inside unsigned.

source§

impl AnySyncMessageLikeEvent

source

pub fn into_full_event(self, room_id: OwnedRoomId) -> AnyMessageLikeEvent

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

Trait Implementations§

source§

impl Clone for AnySyncMessageLikeEvent

source§

fn clone(&self) -> AnySyncMessageLikeEvent

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 AnySyncMessageLikeEvent

source§

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

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

impl<'de> Deserialize<'de> for AnySyncMessageLikeEvent

source§

fn deserialize<D>(
    deserializer: D
) -> Result<AnySyncMessageLikeEvent, <D as Deserializer<'de>>::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) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<AnySyncMessageLikeEvent> for AnySyncTimelineEvent

source§

fn from(c: AnySyncMessageLikeEvent) -> AnySyncTimelineEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<AudioEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc3246 only.
source§

fn from(c: SyncMessageLikeEvent<AudioEventContent>) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallAnswerEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<CallAnswerEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallCandidatesEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<CallCandidatesEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallHangupEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<CallHangupEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallInviteEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<CallInviteEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallNegotiateEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc2746 only.
source§

fn from(
    c: SyncMessageLikeEvent<CallNegotiateEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallRejectEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc2746 only.
source§

fn from(
    c: SyncMessageLikeEvent<CallRejectEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallSelectAnswerEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc2746 only.
source§

fn from(
    c: SyncMessageLikeEvent<CallSelectAnswerEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<EmoteEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc1767 only.
source§

fn from(c: SyncMessageLikeEvent<EmoteEventContent>) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<FileEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc3551 only.
source§

fn from(c: SyncMessageLikeEvent<FileEventContent>) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<ImageEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc3552 only.
source§

fn from(c: SyncMessageLikeEvent<ImageEventContent>) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationAcceptEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<KeyVerificationAcceptEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationCancelEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<KeyVerificationCancelEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationDoneEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<KeyVerificationDoneEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationKeyEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<KeyVerificationKeyEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationMacEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<KeyVerificationMacEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationReadyEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<KeyVerificationReadyEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationStartEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<KeyVerificationStartEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<LocationEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc3488 only.
source§

fn from(
    c: SyncMessageLikeEvent<LocationEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<MessageEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc1767 only.
source§

fn from(c: SyncMessageLikeEvent<MessageEventContent>) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<NoticeEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc1767 only.
source§

fn from(c: SyncMessageLikeEvent<NoticeEventContent>) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<PollEndEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc3381 only.
source§

fn from(c: SyncMessageLikeEvent<PollEndEventContent>) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<PollResponseEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc3381 only.
source§

fn from(
    c: SyncMessageLikeEvent<PollResponseEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<PollStartEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc3381 only.
source§

fn from(
    c: SyncMessageLikeEvent<PollStartEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<ReactionEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc2677 only.
source§

fn from(
    c: SyncMessageLikeEvent<ReactionEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<RoomEncryptedEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<RoomEncryptedEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<RoomMessageEventContent>> for AnySyncMessageLikeEvent

source§

fn from(
    c: SyncMessageLikeEvent<RoomMessageEventContent>
) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<StickerEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncMessageLikeEvent<StickerEventContent>) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<VideoEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc3553 only.
source§

fn from(c: SyncMessageLikeEvent<VideoEventContent>) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<VoiceEventContent>> for AnySyncMessageLikeEvent

Available on crate feature unstable-msc3245 only.
source§

fn from(c: SyncMessageLikeEvent<VoiceEventContent>) -> AnySyncMessageLikeEvent

Converts to this type from the input type.
source§

impl From<SyncRoomRedactionEvent> for AnySyncMessageLikeEvent

source§

fn from(c: SyncRoomRedactionEvent) -> AnySyncMessageLikeEvent

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · 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> 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>,

const: unstable · 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> Same<T> for T

§

type Output = T

Should always be Self
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.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere
    V: MultiLane<T>,

§

fn vzip(self) -> V

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> 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>,