Struct ruma_events::SyncStateEvent [−][src]
pub struct SyncStateEvent<C: StateEventContent> { pub content: C, pub event_id: EventId, pub sender: UserId, pub origin_server_ts: MilliSecondsSinceUnixEpoch, pub state_key: String, pub prev_content: Option<C>, pub unsigned: Unsigned, }
Expand description
A state event without a room_id.
SyncStateEvent 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.
prev_content: Option<C>Optional previous content for this event.
unsigned: UnsignedAdditional key-value pairs not signed by the homeserver.
Implementations
Convert this sync event into a full event, one with a room_id field.
Helper function for membership change. Check the specification for details.
Trait Implementations
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
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 SyncStateEvent<C> where
C: RefUnwindSafe, impl<C> Send for SyncStateEvent<C> where
C: Send, impl<C> Sync for SyncStateEvent<C> where
C: Sync, impl<C> Unpin for SyncStateEvent<C> where
C: Unpin, impl<C> UnwindSafe for SyncStateEvent<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