Enum ruma_events::SyncMessageLikeEvent

source ·
pub enum SyncMessageLikeEvent<C: MessageLikeEventContent + RedactContent>{
    Original(OriginalSyncMessageLikeEvent<C>),
    Redacted(RedactedSyncMessageLikeEvent<C::Redacted>),
}
Expand description

A possibly-redacted message-like event without a room_id.

SyncMessageLikeEvent implements the comparison traits using only the event_id field, a sorted list would be sorted lexicographically based on the event’s EventId.

Variants§

§

Original(OriginalSyncMessageLikeEvent<C>)

Original, unredacted form of the event.

§

Redacted(RedactedSyncMessageLikeEvent<C::Redacted>)

Redacted form of the event with minimal fields.

Implementations§

source§

impl<C> SyncMessageLikeEvent<C>

source

pub fn event_type(&self) -> MessageLikeEventType

Returns the type of this event.

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 origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch

Returns this event’s origin_server_ts field.

source

pub fn as_original(&self) -> Option<&OriginalSyncMessageLikeEvent<C>>

Get the inner OriginalSyncMessageLikeEvent if this is an unredacted event.

source

pub fn into_full_event(self, room_id: OwnedRoomId) -> MessageLikeEvent<C>

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

Trait Implementations§

source§

impl<C: Clone + MessageLikeEventContent + RedactContent> Clone for SyncMessageLikeEvent<C>

source§

fn clone(&self) -> SyncMessageLikeEvent<C>

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<C: Debug + MessageLikeEventContent + RedactContent> Debug for SyncMessageLikeEvent<C>

source§

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

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

impl<'de, C> Deserialize<'de> for SyncMessageLikeEvent<C>

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<C> From<MessageLikeEvent<C>> for SyncMessageLikeEvent<C>

source§

fn from(full: MessageLikeEvent<C>) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<AudioEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncAudioEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallAnswerEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncCallAnswerEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallCandidatesEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncCallCandidatesEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallHangupEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncCallHangupEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallInviteEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncCallInviteEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallNegotiateEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncCallNegotiateEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallNotifyEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncCallNotifyEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallRejectEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncCallRejectEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallSdpStreamMetadataChangedEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncCallSdpStreamMetadataChangedEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<CallSelectAnswerEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncCallSelectAnswerEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<EmoteEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncEmoteEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<EncryptedEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncEncryptedEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<FileEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncFileEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<ImageEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncImageEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationAcceptEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncKeyVerificationAcceptEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationCancelEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncKeyVerificationCancelEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationDoneEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncKeyVerificationDoneEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationKeyEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncKeyVerificationKeyEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationMacEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncKeyVerificationMacEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationReadyEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncKeyVerificationReadyEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<KeyVerificationStartEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncKeyVerificationStartEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<LocationEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncLocationEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<MessageEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncMessageEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<PollEndEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncPollEndEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<PollResponseEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncPollResponseEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<PollStartEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncPollStartEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<ReactionEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncReactionEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<RoomEncryptedEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncRoomEncryptedEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<RoomMessageEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncRoomMessageEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<StickerEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncStickerEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<UnstablePollEndEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncUnstablePollEndEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<UnstablePollResponseEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncUnstablePollResponseEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<UnstablePollStartEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncUnstablePollStartEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<VideoEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncVideoEvent) -> Self

Converts to this type from the input type.
source§

impl From<SyncMessageLikeEvent<VoiceEventContent>> for AnySyncMessageLikeEvent

source§

fn from(c: SyncVoiceEvent) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where 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 T
where 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 T
where 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 T
where T: for<'de> Deserialize<'de>,