Enum ruma_common::events::StateEvent
source · [−]pub enum StateEvent<C: StateEventContent + RedactContent> where
C::Redacted: StateEventContent + RedactedEventContent, {
Original(OriginalStateEvent<C>),
Redacted(RedactedStateEvent<C::Redacted>),
}
Expand description
A possibly-redacted state event.
StateEvent
implements the comparison traits using only the event_id
field, a sorted list
would be sorted lexicographically based on the event’s EventId
.
Variants
Original(OriginalStateEvent<C>)
Original, unredacted form of the event.
Redacted(RedactedStateEvent<C::Redacted>)
Redacted form of the event with minimal fields.
Implementations
sourceimpl<C> StateEvent<C> where
C: StateEventContent + RedactContent,
C::Redacted: StateEventContent + RedactedEventContent,
C::Redacted: StateEventContent<StateKey = C::StateKey>,
impl<C> StateEvent<C> where
C: StateEventContent + RedactContent,
C::Redacted: StateEventContent + RedactedEventContent,
C::Redacted: StateEventContent<StateKey = C::StateKey>,
sourcepub fn event_type(&self) -> StateEventType
pub fn event_type(&self) -> StateEventType
Returns the type
of this event.
sourcepub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
pub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch
Returns this event’s origin_server_ts
field.
sourcepub fn as_original(&self) -> Option<&OriginalStateEvent<C>>
pub fn as_original(&self) -> Option<&OriginalStateEvent<C>>
Get the inner OriginalStateEvent
if this is an unredacted event.
sourceimpl StateEvent<RoomGuestAccessEventContent>
impl StateEvent<RoomGuestAccessEventContent>
sourcepub fn guest_access(&self) -> &GuestAccess
pub fn guest_access(&self) -> &GuestAccess
Obtain the guest access policy, regardless of whether this event is redacted.
sourceimpl StateEvent<RoomHistoryVisibilityEventContent>
impl StateEvent<RoomHistoryVisibilityEventContent>
sourcepub fn history_visibility(&self) -> &HistoryVisibility
pub fn history_visibility(&self) -> &HistoryVisibility
Obtain the history visibility, regardless of whether this event is redacted.
sourceimpl StateEvent<RoomMemberEventContent>
impl StateEvent<RoomMemberEventContent>
sourcepub fn membership(&self) -> &MembershipState
pub fn membership(&self) -> &MembershipState
Obtain the membership state, regardless of whether this event is redacted.
sourceimpl StateEvent<RoomPowerLevelsEventContent>
impl StateEvent<RoomPowerLevelsEventContent>
sourcepub fn power_levels(&self) -> RoomPowerLevels
pub fn power_levels(&self) -> RoomPowerLevels
Obtain the effective power levels, regardless of whether this event is redacted.
Trait Implementations
sourceimpl<C: Clone + StateEventContent + RedactContent> Clone for StateEvent<C> where
C::Redacted: StateEventContent + RedactedEventContent,
C::Redacted: Clone,
impl<C: Clone + StateEventContent + RedactContent> Clone for StateEvent<C> where
C::Redacted: StateEventContent + RedactedEventContent,
C::Redacted: Clone,
sourcefn clone(&self) -> StateEvent<C>
fn clone(&self) -> StateEvent<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 + StateEventContent + RedactContent> Debug for StateEvent<C> where
C::Redacted: StateEventContent + RedactedEventContent,
C::Redacted: Debug,
impl<C: Debug + StateEventContent + RedactContent> Debug for StateEvent<C> where
C::Redacted: StateEventContent + RedactedEventContent,
C::Redacted: Debug,
sourceimpl<'de, C> Deserialize<'de> for StateEvent<C> where
C: StateEventContent + RedactContent,
C::Redacted: StateEventContent + RedactedEventContent,
C::Redacted: StateEventContent<StateKey = C::StateKey>,
impl<'de, C> Deserialize<'de> for StateEvent<C> where
C: StateEventContent + RedactContent,
C::Redacted: StateEventContent + RedactedEventContent,
C::Redacted: StateEventContent<StateKey = C::StateKey>,
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> From<StateEvent<C>> for SyncStateEvent<C> where
C: StateEventContent + RedactContent,
C::Redacted: StateEventContent + RedactedEventContent,
impl<C> From<StateEvent<C>> for SyncStateEvent<C> where
C: StateEventContent + RedactContent,
C::Redacted: StateEventContent + RedactedEventContent,
sourcefn from(full: StateEvent<C>) -> Self
fn from(full: StateEvent<C>) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<PolicyRuleRoomEventContent>> for AnyStateEvent
impl From<StateEvent<PolicyRuleRoomEventContent>> for AnyStateEvent
sourcefn from(c: PolicyRuleRoomEvent) -> Self
fn from(c: PolicyRuleRoomEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<PolicyRuleServerEventContent>> for AnyStateEvent
impl From<StateEvent<PolicyRuleServerEventContent>> for AnyStateEvent
sourcefn from(c: PolicyRuleServerEvent) -> Self
fn from(c: PolicyRuleServerEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<PolicyRuleUserEventContent>> for AnyStateEvent
impl From<StateEvent<PolicyRuleUserEventContent>> for AnyStateEvent
sourcefn from(c: PolicyRuleUserEvent) -> Self
fn from(c: PolicyRuleUserEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomAliasesEventContent>> for AnyStateEvent
impl From<StateEvent<RoomAliasesEventContent>> for AnyStateEvent
sourcefn from(c: RoomAliasesEvent) -> Self
fn from(c: RoomAliasesEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomAvatarEventContent>> for AnyStateEvent
impl From<StateEvent<RoomAvatarEventContent>> for AnyStateEvent
sourcefn from(c: RoomAvatarEvent) -> Self
fn from(c: RoomAvatarEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomCanonicalAliasEventContent>> for AnyStateEvent
impl From<StateEvent<RoomCanonicalAliasEventContent>> for AnyStateEvent
sourcefn from(c: RoomCanonicalAliasEvent) -> Self
fn from(c: RoomCanonicalAliasEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomCreateEventContent>> for AnyStateEvent
impl From<StateEvent<RoomCreateEventContent>> for AnyStateEvent
sourcefn from(c: RoomCreateEvent) -> Self
fn from(c: RoomCreateEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomEncryptionEventContent>> for AnyStateEvent
impl From<StateEvent<RoomEncryptionEventContent>> for AnyStateEvent
sourcefn from(c: RoomEncryptionEvent) -> Self
fn from(c: RoomEncryptionEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomGuestAccessEventContent>> for AnyStateEvent
impl From<StateEvent<RoomGuestAccessEventContent>> for AnyStateEvent
sourcefn from(c: RoomGuestAccessEvent) -> Self
fn from(c: RoomGuestAccessEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomHistoryVisibilityEventContent>> for AnyStateEvent
impl From<StateEvent<RoomHistoryVisibilityEventContent>> for AnyStateEvent
sourcefn from(c: RoomHistoryVisibilityEvent) -> Self
fn from(c: RoomHistoryVisibilityEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomJoinRulesEventContent>> for AnyStateEvent
impl From<StateEvent<RoomJoinRulesEventContent>> for AnyStateEvent
sourcefn from(c: RoomJoinRulesEvent) -> Self
fn from(c: RoomJoinRulesEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomMemberEventContent>> for AnyStateEvent
impl From<StateEvent<RoomMemberEventContent>> for AnyStateEvent
sourcefn from(c: RoomMemberEvent) -> Self
fn from(c: RoomMemberEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomNameEventContent>> for AnyStateEvent
impl From<StateEvent<RoomNameEventContent>> for AnyStateEvent
sourcefn from(c: RoomNameEvent) -> Self
fn from(c: RoomNameEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomPinnedEventsEventContent>> for AnyStateEvent
impl From<StateEvent<RoomPinnedEventsEventContent>> for AnyStateEvent
sourcefn from(c: RoomPinnedEventsEvent) -> Self
fn from(c: RoomPinnedEventsEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomPowerLevelsEventContent>> for AnyStateEvent
impl From<StateEvent<RoomPowerLevelsEventContent>> for AnyStateEvent
sourcefn from(c: RoomPowerLevelsEvent) -> Self
fn from(c: RoomPowerLevelsEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomServerAclEventContent>> for AnyStateEvent
impl From<StateEvent<RoomServerAclEventContent>> for AnyStateEvent
sourcefn from(c: RoomServerAclEvent) -> Self
fn from(c: RoomServerAclEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomThirdPartyInviteEventContent>> for AnyStateEvent
impl From<StateEvent<RoomThirdPartyInviteEventContent>> for AnyStateEvent
sourcefn from(c: RoomThirdPartyInviteEvent) -> Self
fn from(c: RoomThirdPartyInviteEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomTombstoneEventContent>> for AnyStateEvent
impl From<StateEvent<RoomTombstoneEventContent>> for AnyStateEvent
sourcefn from(c: RoomTombstoneEvent) -> Self
fn from(c: RoomTombstoneEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<RoomTopicEventContent>> for AnyStateEvent
impl From<StateEvent<RoomTopicEventContent>> for AnyStateEvent
sourcefn from(c: RoomTopicEvent) -> Self
fn from(c: RoomTopicEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<SpaceChildEventContent>> for AnyStateEvent
impl From<StateEvent<SpaceChildEventContent>> for AnyStateEvent
sourcefn from(c: SpaceChildEvent) -> Self
fn from(c: SpaceChildEvent) -> Self
Converts to this type from the input type.
sourceimpl From<StateEvent<SpaceParentEventContent>> for AnyStateEvent
impl From<StateEvent<SpaceParentEventContent>> for AnyStateEvent
sourcefn from(c: SpaceParentEvent) -> Self
fn from(c: SpaceParentEvent) -> Self
Converts to this type from the input type.
sourceimpl<C> Redact for StateEvent<C> where
C: StateEventContent + RedactContent,
C::Redacted: StateEventContent + RedactedEventContent,
C::Redacted: StateEventContent<StateKey = C::StateKey>,
impl<C> Redact for StateEvent<C> where
C: StateEventContent + RedactContent,
C::Redacted: StateEventContent + RedactedEventContent,
C::Redacted: StateEventContent<StateKey = C::StateKey>,
type Redacted = StateEvent<C>
type Redacted = StateEvent<C>
The redacted form of the event.
sourcefn redact(
self,
redaction: SyncRoomRedactionEvent,
version: &RoomVersionId
) -> Self
fn redact(
self,
redaction: SyncRoomRedactionEvent,
version: &RoomVersionId
) -> Self
Transforms self
into a redacted form (removing most fields) according to the spec. Read more
sourceimpl<C: StateEventContent + RedactContent> Serialize for StateEvent<C> where
C::Redacted: StateEventContent + RedactedEventContent,
C: Serialize,
impl<C: StateEventContent + RedactContent> Serialize for StateEvent<C> where
C::Redacted: StateEventContent + RedactedEventContent,
C: Serialize,
Auto Trait Implementations
impl<C> RefUnwindSafe for StateEvent<C> where
C: RefUnwindSafe,
<C as RedactContent>::Redacted: RefUnwindSafe,
<C as StateEventContent>::StateKey: RefUnwindSafe,
<<C as RedactContent>::Redacted as StateEventContent>::StateKey: RefUnwindSafe,
impl<C> Send for StateEvent<C> where
C: Send,
<C as RedactContent>::Redacted: Send,
<C as StateEventContent>::StateKey: Send,
<<C as RedactContent>::Redacted as StateEventContent>::StateKey: Send,
impl<C> Sync for StateEvent<C> where
C: Sync,
<C as RedactContent>::Redacted: Sync,
<C as StateEventContent>::StateKey: Sync,
<<C as RedactContent>::Redacted as StateEventContent>::StateKey: Sync,
impl<C> Unpin for StateEvent<C> where
C: Unpin,
<C as RedactContent>::Redacted: Unpin,
<C as StateEventContent>::StateKey: Unpin,
<<C as RedactContent>::Redacted as StateEventContent>::StateKey: Unpin,
impl<C> UnwindSafe for StateEvent<C> where
C: UnwindSafe,
<C as RedactContent>::Redacted: UnwindSafe,
<C as StateEventContent>::StateKey: UnwindSafe,
<<C as RedactContent>::Redacted 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<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