Struct ruma::events::OriginalStateEvent
source · pub struct OriginalStateEvent<C>where
C: StaticStateEventContent,{
pub content: C,
pub event_id: OwnedEventId,
pub sender: OwnedUserId,
pub origin_server_ts: MilliSecondsSinceUnixEpoch,
pub room_id: OwnedRoomId,
pub state_key: <C as StateEventContent>::StateKey,
pub unsigned: <C as StaticStateEventContent>::Unsigned,
}
Expand description
An unredacted state event.
OriginalStateEvent
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: OwnedEventId
The globally unique event identifier for the user who sent the event.
sender: OwnedUserId
The fully-qualified ID of the user who sent this event.
origin_server_ts: MilliSecondsSinceUnixEpoch
Timestamp in milliseconds on originating homeserver when this event was sent.
room_id: OwnedRoomId
The ID of the room associated with this event.
state_key: <C as StateEventContent>::StateKey
A 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: <C as StaticStateEventContent>::Unsigned
Additional key-value pairs not signed by the homeserver.
Implementations§
source§impl OriginalStateEvent<RoomMemberEventContent>
impl OriginalStateEvent<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<&RoomMemberEventContent>
pub fn prev_content(&self) -> Option<&RoomMemberEventContent>
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.
Trait Implementations§
source§impl<C> Clone for OriginalStateEvent<C>where
C: Clone + StaticStateEventContent,
<C as StateEventContent>::StateKey: Clone,
<C as StaticStateEventContent>::Unsigned: Clone,
impl<C> Clone for OriginalStateEvent<C>where
C: Clone + StaticStateEventContent,
<C as StateEventContent>::StateKey: Clone,
<C as StaticStateEventContent>::Unsigned: Clone,
source§fn clone(&self) -> OriginalStateEvent<C>
fn clone(&self) -> OriginalStateEvent<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 for OriginalStateEvent<C>where
C: Debug + StaticStateEventContent,
<C as StateEventContent>::StateKey: Debug,
<C as StaticStateEventContent>::Unsigned: Debug,
impl<C> Debug for OriginalStateEvent<C>where
C: Debug + StaticStateEventContent,
<C as StateEventContent>::StateKey: Debug,
<C as StaticStateEventContent>::Unsigned: Debug,
source§impl<'de, C> Deserialize<'de> for OriginalStateEvent<C>where
C: StaticStateEventContent + EventContentFromType,
impl<'de, C> Deserialize<'de> for OriginalStateEvent<C>where
C: StaticStateEventContent + EventContentFromType,
source§fn deserialize<D>(
deserializer: D,
) -> Result<OriginalStateEvent<C>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<OriginalStateEvent<C>, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
source§impl<C> From<OriginalStateEvent<C>> for OriginalSyncStateEvent<C>where
C: StaticStateEventContent,
impl<C> From<OriginalStateEvent<C>> for OriginalSyncStateEvent<C>where
C: StaticStateEventContent,
source§fn from(event: OriginalStateEvent<C>) -> OriginalSyncStateEvent<C>
fn from(event: OriginalStateEvent<C>) -> OriginalSyncStateEvent<C>
source§impl<C> Ord for OriginalStateEvent<C>where
C: StaticStateEventContent,
impl<C> Ord for OriginalStateEvent<C>where
C: StaticStateEventContent,
source§fn cmp(&self, other: &OriginalStateEvent<C>) -> Ordering
fn cmp(&self, other: &OriginalStateEvent<C>) -> Ordering
Compares EventId
s 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> PartialEq for OriginalStateEvent<C>where
C: StaticStateEventContent,
impl<C> PartialEq for OriginalStateEvent<C>where
C: StaticStateEventContent,
source§impl<C> PartialOrd for OriginalStateEvent<C>where
C: StaticStateEventContent,
impl<C> PartialOrd for OriginalStateEvent<C>where
C: StaticStateEventContent,
source§fn partial_cmp(&self, other: &OriginalStateEvent<C>) -> Option<Ordering>
fn partial_cmp(&self, other: &OriginalStateEvent<C>) -> Option<Ordering>
Compares EventId
s and orders them lexicographically.
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moreimpl<C> Eq for OriginalStateEvent<C>where
C: StaticStateEventContent,
Auto Trait Implementations§
impl<C> Freeze for OriginalStateEvent<C>where
C: Freeze,
<C as StateEventContent>::StateKey: Freeze,
<C as StaticStateEventContent>::Unsigned: Freeze,
impl<C> RefUnwindSafe for OriginalStateEvent<C>where
C: RefUnwindSafe,
<C as StateEventContent>::StateKey: RefUnwindSafe,
<C as StaticStateEventContent>::Unsigned: RefUnwindSafe,
impl<C> Send for OriginalStateEvent<C>where
C: Send,
<C as StateEventContent>::StateKey: Send,
<C as StaticStateEventContent>::Unsigned: Send,
impl<C> Sync for OriginalStateEvent<C>where
C: Sync,
<C as StateEventContent>::StateKey: Sync,
<C as StaticStateEventContent>::Unsigned: Sync,
impl<C> Unpin for OriginalStateEvent<C>where
C: Unpin,
<C as StateEventContent>::StateKey: Unpin,
<C as StaticStateEventContent>::Unsigned: Unpin,
impl<C> UnwindSafe for OriginalStateEvent<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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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.