Skip to main content

StateEvent

Enum StateEvent 

Source
pub enum StateEvent<C: StaticStateEventContent + RedactContent>{
    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§

Source§

impl<C> StateEvent<C>

Source

pub fn event_type(&self) -> StateEventType

Returns the type of this event.

Source

pub fn event_id(&self) -> &EventId

Returns this event’s event_id field.

Source

pub fn sender(&self) -> &UserId

Returns this event’s sender field.

Source

pub fn origin_server_ts(&self) -> MilliSecondsSinceUnixEpoch

Returns this event’s origin_server_ts field.

Source

pub fn room_id(&self) -> &RoomId

Returns this event’s room_id field.

Source

pub fn state_key(&self) -> &C::StateKey

Returns this event’s state_key field.

Source

pub fn as_original(&self) -> Option<&OriginalStateEvent<C>>

Get the inner OriginalStateEvent if this is an unredacted event.

Source§

impl StateEvent<RoomGuestAccessEventContent>

Source

pub fn guest_access(&self) -> &GuestAccess

Obtain the guest access policy, regardless of whether this event is redacted.

Source§

impl StateEvent<RoomHistoryVisibilityEventContent>

Source

pub fn history_visibility(&self) -> &HistoryVisibility

Obtain the history visibility, regardless of whether this event is redacted.

Source§

impl StateEvent<RoomJoinRulesEventContent>

Source

pub fn join_rule(&self) -> &JoinRule

Obtain the join rule, regardless of whether this event is redacted.

Source§

impl StateEvent<RoomMemberEventContent>

Source

pub fn membership(&self) -> &MembershipState

Obtain the membership state, regardless of whether this event is redacted.

Source

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.

Source§

impl StateEvent<RoomPowerLevelsEventContent>

Source

pub fn power_levels( &self, rules: &AuthorizationRules, creators: Vec<OwnedUserId>, ) -> RoomPowerLevels

Obtain the effective power levels, regardless of whether this event is redacted.

Trait Implementations§

Source§

impl<C: Clone + StaticStateEventContent + RedactContent> Clone for StateEvent<C>

Source§

fn clone(&self) -> StateEvent<C>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<C: Debug + StaticStateEventContent + RedactContent> Debug for StateEvent<C>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de, C> Deserialize<'de> for StateEvent<C>

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<StateEvent<BeaconInfoEventContent>> for AnyStateEvent

Available on crate feature unstable-msc3489 only.
Source§

fn from(c: BeaconInfoEvent) -> Self

Converts to this type from the input type.
Source§

impl<C> From<StateEvent<C>> for SyncStateEvent<C>

Source§

fn from(full: StateEvent<C>) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<CallMemberEventContent>> for AnyStateEvent

Available on crate feature unstable-msc3401 only.
Source§

fn from(c: CallMemberEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<MemberHintsEventContent>> for AnyStateEvent

Available on crate feature unstable-msc4171 only.
Source§

fn from(c: MemberHintsEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<PolicyRuleRoomEventContent>> for AnyStateEvent

Source§

fn from(c: PolicyRuleRoomEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<PolicyRuleServerEventContent>> for AnyStateEvent

Source§

fn from(c: PolicyRuleServerEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<PolicyRuleUserEventContent>> for AnyStateEvent

Source§

fn from(c: PolicyRuleUserEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomAvatarEventContent>> for AnyStateEvent

Source§

fn from(c: RoomAvatarEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomCanonicalAliasEventContent>> for AnyStateEvent

Source§

fn from(c: RoomCanonicalAliasEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomCreateEventContent>> for AnyStateEvent

Source§

fn from(c: RoomCreateEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomEncryptionEventContent>> for AnyStateEvent

Source§

fn from(c: RoomEncryptionEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomGuestAccessEventContent>> for AnyStateEvent

Source§

fn from(c: RoomGuestAccessEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomHistoryVisibilityEventContent>> for AnyStateEvent

Source§

fn from(c: RoomHistoryVisibilityEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomImagePackEventContent>> for AnyStateEvent

Available on crate feature unstable-msc2545 only.
Source§

fn from(c: RoomImagePackEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomJoinRulesEventContent>> for AnyStateEvent

Source§

fn from(c: RoomJoinRulesEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomLanguageEventContent>> for AnyStateEvent

Available on crate feature unstable-msc4334 only.
Source§

fn from(c: RoomLanguageEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomMemberEventContent>> for AnyStateEvent

Source§

fn from(c: RoomMemberEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomNameEventContent>> for AnyStateEvent

Source§

fn from(c: RoomNameEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomPinnedEventsEventContent>> for AnyStateEvent

Source§

fn from(c: RoomPinnedEventsEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomPolicyEventContent>> for AnyStateEvent

Source§

fn from(c: RoomPolicyEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomPowerLevelsEventContent>> for AnyStateEvent

Source§

fn from(c: RoomPowerLevelsEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomServerAclEventContent>> for AnyStateEvent

Source§

fn from(c: RoomServerAclEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomThirdPartyInviteEventContent>> for AnyStateEvent

Source§

fn from(c: RoomThirdPartyInviteEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomTombstoneEventContent>> for AnyStateEvent

Source§

fn from(c: RoomTombstoneEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<RoomTopicEventContent>> for AnyStateEvent

Source§

fn from(c: RoomTopicEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<SpaceChildEventContent>> for AnyStateEvent

Source§

fn from(c: SpaceChildEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<SpaceParentEventContent>> for AnyStateEvent

Source§

fn from(c: SpaceParentEvent) -> Self

Converts to this type from the input type.
Source§

impl From<StateEvent<StateRoomEncryptedEventContent>> for AnyStateEvent

Available on crate feature unstable-msc4362 only.
Source§

fn from(c: StateRoomEncryptedEvent) -> Self

Converts to this type from the input type.
Source§

impl<C: StaticStateEventContent + RedactContent> JsonCastable<AnyStateEvent> for StateEvent<C>

Source§

impl<C: StaticStateEventContent + RedactContent> JsonCastable<AnyStrippedStateEvent> for StateEvent<C>

Source§

impl<C: StaticStateEventContent + RedactContent> JsonCastable<AnySyncStateEvent> for StateEvent<C>

Source§

impl<C: StaticStateEventContent + RedactContent> JsonCastable<AnySyncTimelineEvent> for StateEvent<C>

Source§

impl<C: StaticStateEventContent + RedactContent> JsonCastable<AnyTimelineEvent> for StateEvent<C>

Source§

impl<C: StaticStateEventContent + RedactContent> JsonCastable<Map<String, Value>> for StateEvent<C>

Source§

impl<C: StaticStateEventContent + RedactContent> JsonCastable<StateEvent<C>> for OriginalStateEvent<C>

Source§

impl<C: StaticStateEventContent + RedactContent> JsonCastable<StateEvent<C>> for RedactedStateEvent<C::Redacted>

Source§

impl<C: StaticStateEventContent + RedactContent> JsonCastable<StrippedStateEvent<<C as StaticStateEventContent>::PossiblyRedacted>> for StateEvent<C>

Source§

impl<C: StaticStateEventContent + RedactContent> JsonCastable<SyncStateEvent<C>> for StateEvent<C>

Auto Trait Implementations§

§

impl<C> Freeze for StateEvent<C>

§

impl<C> RefUnwindSafe for StateEvent<C>

§

impl<C> Send for StateEvent<C>

§

impl<C> Sync for StateEvent<C>

§

impl<C> Unpin for StateEvent<C>

§

impl<C> UnsafeUnpin for StateEvent<C>

§

impl<C> UnwindSafe for StateEvent<C>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DropFlavorWrapper<T> for T

Source§

type Flavor = MayDrop

The DropFlavor that wraps T into Self
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T, UT> HandleAlloc<UT> for T
where T: Send + Sync,

§

fn new_handle(value: Arc<T>) -> Handle

Create a new handle for an Arc value Read more
§

unsafe fn clone_handle(handle: Handle) -> Handle

Clone a handle Read more
§

unsafe fn consume_handle(handle: Handle) -> Arc<T>

Consume a handle, getting back the initial Arc<> Read more
§

unsafe fn get_arc(handle: Handle) -> Arc<Self>

Get a clone of the Arc<> using a “borrowed” handle. Read more
Source§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

Source§

const WITNESS: W = W::MAKE

A constant of the type witness
Source§

impl<T> Identity for T
where T: ?Sized,

Source§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
Source§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> JsonCastable<BTreeMap<String, CanonicalJsonValue>> for T

Source§

impl<T> JsonCastable<CanonicalJsonValue> for T

Source§

impl<T> JsonCastable<Value> for T