#[non_exhaustive]pub struct OriginalSyncStateEvent<C: StaticStateEventContent> {
pub content: C,
pub event_id: OwnedEventId,
pub sender: OwnedUserId,
pub origin_server_ts: MilliSecondsSinceUnixEpoch,
pub state_key: C::StateKey,
pub unsigned: C::Unsigned,
}Expand description
An unredacted state event without a room_id.
OriginalSyncStateEvent implements the comparison traits using only the event_id field, a
sorted list would be sorted lexicographically based on the event’s EventId.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.content: CData specific to the event type.
event_id: OwnedEventIdThe globally unique identifier for the event.
sender: OwnedUserIdThe fully-qualified ID of the user who sent this event.
origin_server_ts: MilliSecondsSinceUnixEpochTimestamp on the originating homeserver when this event was sent.
state_key: C::StateKeyA unique key which defines the overwriting semantics for this piece of room state.
This must be a string type, and is often an empty string.
A state event is keyed by its (type, state_key) tuple. Sending another state event with
the same tuple replaces the previous one.
unsigned: C::UnsignedAdditional key-value pairs not signed by the homeserver.
Implementations§
Source§impl<C: StaticStateEventContent> OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> OriginalSyncStateEvent<C>
Sourcepub fn event_type(&self) -> StateEventType
pub fn event_type(&self) -> StateEventType
Get the event’s type.
Source§impl<C: StaticStateEventContent> OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> OriginalSyncStateEvent<C>
Sourcepub fn into_full_event(self, room_id: OwnedRoomId) -> OriginalStateEvent<C>
pub fn into_full_event(self, room_id: OwnedRoomId) -> OriginalStateEvent<C>
Convert this sync event into a full event, one with a room_id field.
Source§impl OriginalSyncStateEvent<RoomMemberEventContent>
impl OriginalSyncStateEvent<RoomMemberEventContent>
Sourcepub fn details(&self) -> MembershipDetails<'_>
pub fn details(&self) -> MembershipDetails<'_>
Obtain the details about this event that are required to calculate a membership change.
This is required when you want to calculate the change a redacted m.room.member event
made.
Sourcepub fn prev_content(&self) -> Option<&PossiblyRedactedRoomMemberEventContent>
pub fn prev_content(&self) -> Option<&PossiblyRedactedRoomMemberEventContent>
Get a reference to the prev_content in unsigned, if it exists.
Shorthand for event.unsigned.prev_content.as_ref()
Sourcepub fn membership_change(&self) -> MembershipChange<'_>
pub fn membership_change(&self) -> MembershipChange<'_>
Helper function for membership change.
Check the specification for details.
Sourcepub fn should_redact_events(&self) -> bool
pub fn should_redact_events(&self) -> bool
Determines whether the user’s events should be redacted based on their membership.
Using MSC4293, if redact_events is true, the sender is different to the state key,
and the membership is ban or leave (kick), true is returned. Otherwise, the flag
should be ignored, and false is returned.
Trait Implementations§
Source§impl<C: Clone + StaticStateEventContent> Clone for OriginalSyncStateEvent<C>
impl<C: Clone + StaticStateEventContent> Clone for OriginalSyncStateEvent<C>
Source§fn clone(&self) -> OriginalSyncStateEvent<C>
fn clone(&self) -> OriginalSyncStateEvent<C>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl<C: Debug + StaticStateEventContent> Debug for OriginalSyncStateEvent<C>
impl<C: Debug + StaticStateEventContent> Debug for OriginalSyncStateEvent<C>
Source§impl<'de, C> Deserialize<'de> for OriginalSyncStateEvent<C>where
C: EventContentFromType + StaticStateEventContent,
impl<'de, C> Deserialize<'de> for OriginalSyncStateEvent<C>where
C: EventContentFromType + StaticStateEventContent,
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Source§impl<C: StaticStateEventContent> From<OriginalStateEvent<C>> for OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> From<OriginalStateEvent<C>> for OriginalSyncStateEvent<C>
Source§fn from(event: OriginalStateEvent<C>) -> Self
fn from(event: OriginalStateEvent<C>) -> Self
Source§impl<C: StaticStateEventContent> Ord for OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> Ord for OriginalSyncStateEvent<C>
Source§fn cmp(&self, other: &Self) -> Ordering
fn cmp(&self, other: &Self) -> Ordering
Compares the EventIds of the events and orders them lexicographically.
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl<C: StaticStateEventContent> PartialEq for OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> PartialEq for OriginalSyncStateEvent<C>
Source§impl<C: StaticStateEventContent> PartialOrd for OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> PartialOrd for OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> Eq for OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> JsonCastable<AnyStrippedStateEvent> for OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> JsonCastable<AnySyncStateEvent> for OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> JsonCastable<AnySyncTimelineEvent> for OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> JsonCastable<Map<String, Value>> for OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent> JsonCastable<OriginalSyncStateEvent<C>> for OriginalStateEvent<C>
impl<C: StaticStateEventContent> JsonCastable<StrippedStateEvent<<C as StaticStateEventContent>::PossiblyRedacted>> for OriginalSyncStateEvent<C>
impl<C: StaticStateEventContent + RedactContent> JsonCastable<SyncStateEvent<C>> for OriginalSyncStateEvent<C>where
C::Redacted: RedactedStateEventContent,
Auto Trait Implementations§
impl<C> Freeze for OriginalSyncStateEvent<C>where
C: Freeze,
<C as StateEventContent>::StateKey: Freeze,
<C as StaticStateEventContent>::Unsigned: Freeze,
impl<C> RefUnwindSafe for OriginalSyncStateEvent<C>where
C: RefUnwindSafe,
<C as StateEventContent>::StateKey: RefUnwindSafe,
<C as StaticStateEventContent>::Unsigned: RefUnwindSafe,
impl<C> Send for OriginalSyncStateEvent<C>where
C: Send,
<C as StateEventContent>::StateKey: Send,
<C as StaticStateEventContent>::Unsigned: Send,
impl<C> Sync for OriginalSyncStateEvent<C>where
C: Sync,
<C as StateEventContent>::StateKey: Sync,
<C as StaticStateEventContent>::Unsigned: Sync,
impl<C> Unpin for OriginalSyncStateEvent<C>where
C: Unpin,
<C as StateEventContent>::StateKey: Unpin,
<C as StaticStateEventContent>::Unsigned: Unpin,
impl<C> UnsafeUnpin for OriginalSyncStateEvent<C>where
C: UnsafeUnpin,
<C as StateEventContent>::StateKey: UnsafeUnpin,
<C as StaticStateEventContent>::Unsigned: UnsafeUnpin,
impl<C> UnwindSafe for OriginalSyncStateEvent<C>where
C: UnwindSafe,
<C as StateEventContent>::StateKey: UnwindSafe,
<C as StaticStateEventContent>::Unsigned: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<T> DropFlavorWrapper<T> for T
impl<T> DropFlavorWrapper<T> for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
§fn new_handle(value: Arc<T>) -> Handle
fn new_handle(value: Arc<T>) -> Handle
§unsafe fn clone_handle(handle: Handle) -> Handle
unsafe fn clone_handle(handle: Handle) -> Handle
§unsafe fn consume_handle(handle: Handle) -> Arc<T>
unsafe fn consume_handle(handle: Handle) -> Arc<T>
Arc<> Read more