Struct ruma_events::RedactedMessageEvent[][src]

pub struct RedactedMessageEvent<C: RedactedMessageEventContent> {
    pub content: C,
    pub event_id: EventId,
    pub sender: UserId,
    pub origin_server_ts: SystemTime,
    pub room_id: RoomId,
    pub unsigned: RedactedUnsigned,
}

A redacted message event.

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

Fields

content: C

Data specific to the event type.

event_id: EventId

The globally unique event identifier for the user who sent the event.

sender: UserId

The fully-qualified ID of the user who sent this event.

origin_server_ts: SystemTime

Timestamp in milliseconds on originating homeserver when this event was sent.

room_id: RoomId

The ID of the room associated with this event.

unsigned: RedactedUnsigned

Additional key-value pairs not signed by the homeserver.

Trait Implementations

impl<C: Clone + RedactedMessageEventContent> Clone for RedactedMessageEvent<C>[src]

impl<C: Debug + RedactedMessageEventContent> Debug for RedactedMessageEvent<C>[src]

impl<'de, C: RedactedMessageEventContent> Deserialize<'de> for RedactedMessageEvent<C>[src]

impl<C: RedactedMessageEventContent> Eq for RedactedMessageEvent<C>[src]

impl<C: RedactedMessageEventContent> From<RedactedMessageEvent<C>> for RedactedSyncMessageEvent<C>[src]

impl<C: RedactedMessageEventContent> Ord for RedactedMessageEvent<C>[src]

fn cmp(&self, other: &Self) -> Ordering[src]

This compares EventIds and orders them lexicographically.

impl<C: RedactedMessageEventContent> PartialEq<RedactedMessageEvent<C>> for RedactedMessageEvent<C>[src]

fn eq(&self, other: &Self) -> bool[src]

This checks if two EventIds are equal.

impl<C: RedactedMessageEventContent> PartialOrd<RedactedMessageEvent<C>> for RedactedMessageEvent<C>[src]

fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]

This compares EventIds and orders them lexicographically.

impl<C: RedactedMessageEventContent> Serialize for RedactedMessageEvent<C>[src]

Auto Trait Implementations

impl<C> RefUnwindSafe for RedactedMessageEvent<C> where
    C: RefUnwindSafe

impl<C> Send for RedactedMessageEvent<C> where
    C: Send

impl<C> Sync for RedactedMessageEvent<C> where
    C: Sync

impl<C> Unpin for RedactedMessageEvent<C> where
    C: Unpin

impl<C> UnwindSafe for RedactedMessageEvent<C> where
    C: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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