Skip to main content

StrippedStateEvent

Struct StrippedStateEvent 

Source
#[non_exhaustive]
pub struct StrippedStateEvent<C>{ pub content: C, pub sender: OwnedUserId, pub state_key: <C as PossiblyRedactedStateEventContent>::StateKey, pub origin_server_ts: Option<MilliSecondsSinceUnixEpoch>, pub unsigned: Option<Raw<StateUnsigned<C>>>, }
Available on crate feature events only.
Expand description

A stripped-down state event, used for previews of rooms the user has been invited to.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§content: C

Data specific to the event type.

§sender: OwnedUserId

The fully-qualified ID of the user who sent this event.

§state_key: <C as PossiblyRedactedStateEventContent>::StateKey

A 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.

§origin_server_ts: Option<MilliSecondsSinceUnixEpoch>
Available on crate feature unstable-msc4319 only.

Timestamp on the originating homeserver when this event was sent.

This field is usually stripped, but some events might include it.

§unsigned: Option<Raw<StateUnsigned<C>>>
Available on crate feature unstable-msc4319 only.

Additional key-value pairs not signed by the homeserver.

Implementations§

Source§

impl<C> StrippedStateEvent<C>

Source

pub fn event_type(&self) -> StateEventType

Available on crate feature unstable-msc3489 only.

Get the event’s type.

Source§

impl StrippedStateEvent<PossiblyRedactedRoomMemberEventContent>

Source

pub fn details(&self) -> MembershipDetails<'_>

Available on crate feature unstable-msc3489 only.

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.

Source

pub fn membership_change<'a>( &'a self, prev_details: Option<MembershipDetails<'a>>, ) -> MembershipChange<'a>

Available on crate feature unstable-msc3489 only.

Helper function for membership change.

Since stripped 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.

Source

pub fn should_redact_events(&self) -> bool

Available on crate features unstable-msc3489 and unstable-msc4293 only.

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 StrippedStateEvent<RoomPowerLevelsEventContent>

Source

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

Available on crate feature unstable-msc3489 only.

Obtain the effective power levels from this event.

Trait Implementations§

Source§

impl<C> Clone for StrippedStateEvent<C>

Source§

fn clone(&self) -> StrippedStateEvent<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 for StrippedStateEvent<C>

Source§

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

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

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

Source§

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

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

impl From<StrippedStateEvent<CallMemberEventContent>> for AnyStrippedStateEvent

Available on crate feature unstable-msc3401 only.
Source§

fn from(c: StrippedStateEvent<CallMemberEventContent>) -> AnyStrippedStateEvent

Converts to this type from the input type.
Source§

impl From<StrippedStateEvent<PossiblyRedactedBeaconInfoEventContent>> for AnyStrippedStateEvent

Available on crate feature unstable-msc3489 only.
Source§

impl From<StrippedStateEvent<PossiblyRedactedMemberHintsEventContent>> for AnyStrippedStateEvent

Available on crate feature unstable-msc4171 only.
Source§

impl From<StrippedStateEvent<PossiblyRedactedPolicyRuleRoomEventContent>> for AnyStrippedStateEvent

Source§

impl From<StrippedStateEvent<PossiblyRedactedPolicyRuleServerEventContent>> for AnyStrippedStateEvent

Source§

impl From<StrippedStateEvent<PossiblyRedactedPolicyRuleUserEventContent>> for AnyStrippedStateEvent

Source§

impl From<StrippedStateEvent<PossiblyRedactedRoomEncryptionEventContent>> for AnyStrippedStateEvent

Source§

impl From<StrippedStateEvent<PossiblyRedactedRoomGuestAccessEventContent>> for AnyStrippedStateEvent

Source§

impl From<StrippedStateEvent<PossiblyRedactedRoomImagePackEventContent>> for AnyStrippedStateEvent

Available on crate feature unstable-msc2545 only.
Source§

impl From<StrippedStateEvent<PossiblyRedactedRoomLanguageEventContent>> for AnyStrippedStateEvent

Available on crate feature unstable-msc4334 only.
Source§

impl From<StrippedStateEvent<PossiblyRedactedRoomMemberEventContent>> for AnyStrippedStateEvent

Source§

impl From<StrippedStateEvent<PossiblyRedactedRoomNameEventContent>> for AnyStrippedStateEvent

Source§

fn from( c: StrippedStateEvent<PossiblyRedactedRoomNameEventContent>, ) -> AnyStrippedStateEvent

Converts to this type from the input type.
Source§

impl From<StrippedStateEvent<PossiblyRedactedRoomPinnedEventsEventContent>> for AnyStrippedStateEvent

Source§

impl From<StrippedStateEvent<PossiblyRedactedRoomPolicyEventContent>> for AnyStrippedStateEvent

Source§

impl From<StrippedStateEvent<PossiblyRedactedRoomTombstoneEventContent>> for AnyStrippedStateEvent

Source§

impl From<StrippedStateEvent<PossiblyRedactedRoomTopicEventContent>> for AnyStrippedStateEvent

Source§

fn from( c: StrippedStateEvent<PossiblyRedactedRoomTopicEventContent>, ) -> AnyStrippedStateEvent

Converts to this type from the input type.
Source§

impl From<StrippedStateEvent<PossiblyRedactedSpaceChildEventContent>> for AnyStrippedStateEvent

Source§

impl From<StrippedStateEvent<PossiblyRedactedSpaceParentEventContent>> for AnyStrippedStateEvent

Source§

impl From<StrippedStateEvent<PossiblyRedactedStateRoomEncryptedEventContent>> for AnyStrippedStateEvent

Available on crate feature unstable-msc4362 only.
Source§

impl From<StrippedStateEvent<RoomAvatarEventContent>> for AnyStrippedStateEvent

Source§

fn from(c: StrippedStateEvent<RoomAvatarEventContent>) -> AnyStrippedStateEvent

Converts to this type from the input type.
Source§

impl From<StrippedStateEvent<RoomCanonicalAliasEventContent>> for AnyStrippedStateEvent

Source§

fn from( c: StrippedStateEvent<RoomCanonicalAliasEventContent>, ) -> AnyStrippedStateEvent

Converts to this type from the input type.
Source§

impl From<StrippedStateEvent<RoomCreateEventContent>> for AnyStrippedStateEvent

Source§

fn from(c: StrippedStateEvent<RoomCreateEventContent>) -> AnyStrippedStateEvent

Converts to this type from the input type.
Source§

impl From<StrippedStateEvent<RoomHistoryVisibilityEventContent>> for AnyStrippedStateEvent

Source§

fn from( c: StrippedStateEvent<RoomHistoryVisibilityEventContent>, ) -> AnyStrippedStateEvent

Converts to this type from the input type.
Source§

impl From<StrippedStateEvent<RoomJoinRulesEventContent>> for AnyStrippedStateEvent

Source§

fn from( c: StrippedStateEvent<RoomJoinRulesEventContent>, ) -> AnyStrippedStateEvent

Converts to this type from the input type.
Source§

impl From<StrippedStateEvent<RoomPowerLevelsEventContent>> for AnyStrippedStateEvent

Source§

fn from( c: StrippedStateEvent<RoomPowerLevelsEventContent>, ) -> AnyStrippedStateEvent

Converts to this type from the input type.
Source§

impl From<StrippedStateEvent<RoomServerAclEventContent>> for AnyStrippedStateEvent

Source§

fn from( c: StrippedStateEvent<RoomServerAclEventContent>, ) -> AnyStrippedStateEvent

Converts to this type from the input type.
Source§

impl From<StrippedStateEvent<RoomThirdPartyInviteEventContent>> for AnyStrippedStateEvent

Source§

fn from( c: StrippedStateEvent<RoomThirdPartyInviteEventContent>, ) -> AnyStrippedStateEvent

Converts to this type from the input type.
Source§

impl<C> JsonCastable<AnyStrippedStateEvent> for StrippedStateEvent<C>

Source§

impl<C> JsonCastable<Map<String, Value>> for StrippedStateEvent<C>

Source§

impl<C> JsonCastable<StrippedStateEvent<<C as StaticStateEventContent>::PossiblyRedacted>> for OriginalStateEvent<C>

Source§

impl<C> JsonCastable<StrippedStateEvent<<C as StaticStateEventContent>::PossiblyRedacted>> for OriginalSyncStateEvent<C>

Source§

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

Source§

impl<C> JsonCastable<StrippedStateEvent<<C as StaticStateEventContent>::PossiblyRedacted>> for SyncStateEvent<C>

Auto Trait Implementations§

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> Same for T

Source§

type Output = T

Should always be Self
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