pub struct StrippedStateEvent<C: PossiblyRedactedStateEventContent> {
    pub content: C,
    pub sender: OwnedUserId,
    pub state_key: C::StateKey,
}
Expand description

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

Fields§

§content: C

Data specific to the event type.

§sender: OwnedUserId

The fully-qualified ID of the user who sent 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.

Implementations§

source§

impl StrippedStateEvent<RoomMemberEventContent>

source

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.

source

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

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§

impl StrippedStateEvent<RoomPowerLevelsEventContent>

source

pub fn power_levels(&self) -> RoomPowerLevels

Obtain the effective power levels from this event.

Trait Implementations§

source§

impl<C: Clone + PossiblyRedactedStateEventContent> Clone for StrippedStateEvent<C>where C::StateKey: Clone,

source§

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

Returns a copy 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 + PossiblyRedactedStateEventContent> Debug for StrippedStateEvent<C>where C::StateKey: Debug,

source§

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

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

impl<'de, C> Deserialize<'de> for StrippedStateEvent<C>where C: EventContentFromType + PossiblyRedactedStateEventContent,

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<StrippedStateEvent<PossiblyRedactedCallMemberEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedCallMemberEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedPolicyRuleRoomEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedPolicyRuleRoomEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedPolicyRuleServerEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedPolicyRuleServerEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedPolicyRuleUserEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedPolicyRuleUserEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedRoomAliasesEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomAliasesEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedRoomEncryptionEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomEncryptionEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedRoomGuestAccessEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomGuestAccessEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedRoomNameEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomNameEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedRoomPinnedEventsEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomPinnedEventsEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedRoomTombstoneEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomTombstoneEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedRoomTopicEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomTopicEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedSpaceChildEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedSpaceChildEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<PossiblyRedactedSpaceParentEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedSpaceParentEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<RoomAvatarEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomAvatarEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<RoomCanonicalAliasEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomCanonicalAliasEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<RoomCreateEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomCreateEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<RoomHistoryVisibilityEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomHistoryVisibilityEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<RoomJoinRulesEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomJoinRulesEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<RoomMemberEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomMemberEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<RoomPowerLevelsEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomPowerLevelsEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<RoomServerAclEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomServerAclEvent) -> Self

Converts to this type from the input type.
source§

impl From<StrippedStateEvent<RoomThirdPartyInviteEventContent>> for AnyStrippedStateEvent

source§

fn from(c: StrippedRoomThirdPartyInviteEvent) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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 Twhere 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 Twhere T: Clone,

§

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 Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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 Twhere T: for<'de> Deserialize<'de>,