Struct ruma_events::RedactedSyncStateEvent [−][src]
pub struct RedactedSyncStateEvent<C: RedactedStateEventContent> { pub content: C, pub event_id: EventId, pub sender: UserId, pub origin_server_ts: MilliSecondsSinceUnixEpoch, pub state_key: String, pub unsigned: RedactedUnsigned, }
Expand description
A redacted state event without a room_id.
RedactedSyncStateEvent 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: CData specific to the event type.
event_id: EventIdThe globally unique event identifier for the user who sent the event.
sender: UserIdThe fully-qualified ID of the user who sent this event.
origin_server_ts: MilliSecondsSinceUnixEpochTimestamp in milliseconds on originating homeserver when this event was sent.
state_key: StringA unique key which defines the overwriting semantics for this piece of room state.
This is often an empty string, but some events send a UserId to show
which user the event affects.
unsigned: RedactedUnsignedAdditional key-value pairs not signed by the homeserver.
Implementations
Convert this sync event into a full event, one with a room_id field.
Trait Implementations
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
impl<C: RedactedStateEventContent> PartialEq<RedactedSyncStateEvent<C>> for RedactedSyncStateEvent<C>
impl<C: RedactedStateEventContent> PartialEq<RedactedSyncStateEvent<C>> for RedactedSyncStateEvent<C>impl<C: RedactedStateEventContent> PartialOrd<RedactedSyncStateEvent<C>> for RedactedSyncStateEvent<C>
impl<C: RedactedStateEventContent> PartialOrd<RedactedSyncStateEvent<C>> for RedactedSyncStateEvent<C>This compares EventIds and orders them lexicographically.
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl<C> RefUnwindSafe for RedactedSyncStateEvent<C> where
C: RefUnwindSafe, impl<C> Send for RedactedSyncStateEvent<C> where
C: Send, impl<C> Sync for RedactedSyncStateEvent<C> where
C: Sync, impl<C> Unpin for RedactedSyncStateEvent<C> where
C: Unpin, impl<C> UnwindSafe for RedactedSyncStateEvent<C> where
C: UnwindSafe, Blanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
pub fn vzip(self) -> V