Struct ruma_common::events::RedactedStateEvent
source · [−]pub struct RedactedStateEvent<C: RedactedStateEventContent> {
pub content: C,
pub event_id: OwnedEventId,
pub sender: OwnedUserId,
pub origin_server_ts: MilliSecondsSinceUnixEpoch,
pub room_id: OwnedRoomId,
pub state_key: C::StateKey,
pub unsigned: RedactedUnsigned,
}
Expand description
A redacted state event.
RedactedStateEvent
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::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: RedactedUnsigned
Additional key-value pairs not signed by the homeserver.
Implementations
sourceimpl RedactedStateEvent<RedactedRoomMemberEventContent>
impl RedactedStateEvent<RedactedRoomMemberEventContent>
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 membership_change<'a>(
&'a self,
prev_details: Option<MembershipDetails<'a>>
) -> MembershipChange<'a>
pub fn membership_change<'a>(
&'a self,
prev_details: Option<MembershipDetails<'a>>
) -> MembershipChange<'a>
Helper function for membership change.
Since redacted events don’t have unsigned.prev_content
, you have to pass the .details()
of the previous m.room.member
event manually (if there is a previous m.room.member
event).
Check the specification for details.
Trait Implementations
sourceimpl<C: Clone + RedactedStateEventContent> Clone for RedactedStateEvent<C> where
C::StateKey: Clone,
impl<C: Clone + RedactedStateEventContent> Clone for RedactedStateEvent<C> where
C::StateKey: Clone,
sourcefn clone(&self) -> RedactedStateEvent<C>
fn clone(&self) -> RedactedStateEvent<C>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<C: Debug + RedactedStateEventContent> Debug for RedactedStateEvent<C> where
C::StateKey: Debug,
impl<C: Debug + RedactedStateEventContent> Debug for RedactedStateEvent<C> where
C::StateKey: Debug,
sourceimpl<'de, C: RedactedStateEventContent> Deserialize<'de> for RedactedStateEvent<C>
impl<'de, C: RedactedStateEventContent> Deserialize<'de> for RedactedStateEvent<C>
sourcefn 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>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<C: RedactedStateEventContent> From<RedactedStateEvent<C>> for RedactedSyncStateEvent<C>
impl<C: RedactedStateEventContent> From<RedactedStateEvent<C>> for RedactedSyncStateEvent<C>
sourcefn from(event: RedactedStateEvent<C>) -> Self
fn from(event: RedactedStateEvent<C>) -> Self
Converts to this type from the input type.
sourceimpl<C: RedactedStateEventContent> Ord for RedactedStateEvent<C>
impl<C: RedactedStateEventContent> Ord for RedactedStateEvent<C>
sourceimpl<C: RedactedStateEventContent> PartialEq<RedactedStateEvent<C>> for RedactedStateEvent<C>
impl<C: RedactedStateEventContent> PartialEq<RedactedStateEvent<C>> for RedactedStateEvent<C>
sourceimpl<C: RedactedStateEventContent> PartialOrd<RedactedStateEvent<C>> for RedactedStateEvent<C>
impl<C: RedactedStateEventContent> PartialOrd<RedactedStateEvent<C>> for RedactedStateEvent<C>
sourcefn partial_cmp(&self, other: &Self) -> Option<Ordering>
fn partial_cmp(&self, other: &Self) -> Option<Ordering>
Compares EventId
s and orders them lexicographically.
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl<C: RedactedStateEventContent> Serialize for RedactedStateEvent<C>
impl<C: RedactedStateEventContent> Serialize for RedactedStateEvent<C>
impl<C: RedactedStateEventContent> Eq for RedactedStateEvent<C>
Auto Trait Implementations
impl<C> RefUnwindSafe for RedactedStateEvent<C> where
C: RefUnwindSafe,
<C as StateEventContent>::StateKey: RefUnwindSafe,
impl<C> Send for RedactedStateEvent<C> where
C: Send,
<C as StateEventContent>::StateKey: Send,
impl<C> Sync for RedactedStateEvent<C> where
C: Sync,
<C as StateEventContent>::StateKey: Sync,
impl<C> Unpin for RedactedStateEvent<C> where
C: Unpin,
<C as StateEventContent>::StateKey: Unpin,
impl<C> UnwindSafe for RedactedStateEvent<C> where
C: UnwindSafe,
<C as StateEventContent>::StateKey: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more