pub enum SyncStateEvent<C>where
    C: StaticStateEventContent + RedactContent,
    <C as RedactContent>::Redacted: RedactedStateEventContent,
{ Original(OriginalSyncStateEvent<C>), Redacted(RedactedSyncStateEvent<<C as RedactContent>::Redacted>), }
Available on crate feature events only.
Expand description

A possibly-redacted state event without a room_id.

SyncStateEvent 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(OriginalSyncStateEvent<C>)

Original, unredacted form of the event.

§

Redacted(RedactedSyncStateEvent<<C as RedactContent>::Redacted>)

Redacted form of the event with minimal fields.

Implementations§

source§

impl<C> SyncStateEvent<C>where
    C: StaticStateEventContent + RedactContent,
    <C as RedactContent>::Redacted: RedactedStateEventContent<StateKey = <C as StateEventContent>::StateKey> + RedactedStateEventContent,

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 state_key(&self) -> &<C as StateEventContent>::StateKey

Returns this event’s state_key field.

source

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

Get the inner OriginalSyncStateEvent if this is an unredacted event.

source

pub fn into_full_event(self, room_id: OwnedRoomId) -> StateEvent<C>

Convert this sync event into a full event (one with a room_id field).

source§

impl SyncStateEvent<RoomGuestAccessEventContent>

source

pub fn guest_access(&self) -> &GuestAccess

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

source§

impl SyncStateEvent<RoomHistoryVisibilityEventContent>

source

pub fn history_visibility(&self) -> &HistoryVisibility

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

source§

impl SyncStateEvent<RoomJoinRulesEventContent>

source

pub fn join_rule(&self) -> &JoinRule

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

source§

impl SyncStateEvent<RoomMemberEventContent>

source

pub fn membership(&self) -> &MembershipState

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

source§

impl SyncStateEvent<RoomPowerLevelsEventContent>

source

pub fn power_levels(&self) -> RoomPowerLevels

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

Trait Implementations§

source§

impl<C> Clone for SyncStateEvent<C>where
    C: Clone + StaticStateEventContent + RedactContent,
    <C as RedactContent>::Redacted: RedactedStateEventContent + Clone,

source§

fn clone(&self) -> SyncStateEvent<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 for SyncStateEvent<C>where
    C: Debug + StaticStateEventContent + RedactContent,
    <C as RedactContent>::Redacted: RedactedStateEventContent + Debug,

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 SyncStateEvent<C>where
    C: StaticStateEventContent + EventContentFromType + RedactContent,
    <C as RedactContent>::Redacted: RedactedStateEventContent<StateKey = <C as StateEventContent>::StateKey> + EventContentFromType + RedactedStateEventContent,

source§

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

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

impl<C> From<StateEvent<C>> for SyncStateEvent<C>where
    C: StaticStateEventContent + RedactContent,
    <C as RedactContent>::Redacted: RedactedStateEventContent,

source§

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

Converts to this type from the input type.
source§

impl From<SyncStateEvent<PolicyRuleRoomEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<PolicyRuleRoomEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<PolicyRuleServerEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<PolicyRuleServerEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<PolicyRuleUserEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<PolicyRuleUserEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomAliasesEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomAliasesEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomAvatarEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomAvatarEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomCanonicalAliasEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomCanonicalAliasEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomCreateEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomCreateEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomEncryptionEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomEncryptionEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomGuestAccessEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomGuestAccessEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomHistoryVisibilityEventContent>> for AnySyncStateEvent

source§

fn from(
    c: SyncStateEvent<RoomHistoryVisibilityEventContent>
) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomJoinRulesEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomJoinRulesEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomMemberEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomMemberEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomNameEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomNameEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomPinnedEventsEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomPinnedEventsEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomPowerLevelsEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomPowerLevelsEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomServerAclEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomServerAclEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomThirdPartyInviteEventContent>> for AnySyncStateEvent

source§

fn from(
    c: SyncStateEvent<RoomThirdPartyInviteEventContent>
) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomTombstoneEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomTombstoneEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<RoomTopicEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<RoomTopicEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<SpaceChildEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<SpaceChildEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.
source§

impl From<SyncStateEvent<SpaceParentEventContent>> for AnySyncStateEvent

source§

fn from(c: SyncStateEvent<SpaceParentEventContent>) -> AnySyncStateEvent

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<C> RefUnwindSafe for SyncStateEvent<C>where
    C: RefUnwindSafe,
    <C as RedactContent>::Redacted: RefUnwindSafe,
    <C as StateEventContent>::StateKey: RefUnwindSafe,
    <<C as RedactContent>::Redacted as RedactedStateEventContent>::StateKey: RefUnwindSafe,
    <C as StaticStateEventContent>::Unsigned: RefUnwindSafe,

§

impl<C> Send for SyncStateEvent<C>where
    C: Send,
    <C as RedactContent>::Redacted: Send,
    <C as StateEventContent>::StateKey: Send,
    <<C as RedactContent>::Redacted as RedactedStateEventContent>::StateKey: Send,
    <C as StaticStateEventContent>::Unsigned: Send,

§

impl<C> Sync for SyncStateEvent<C>where
    C: Sync,
    <C as RedactContent>::Redacted: Sync,
    <C as StateEventContent>::StateKey: Sync,
    <<C as RedactContent>::Redacted as RedactedStateEventContent>::StateKey: Sync,
    <C as StaticStateEventContent>::Unsigned: Sync,

§

impl<C> Unpin for SyncStateEvent<C>where
    C: Unpin,
    <C as RedactContent>::Redacted: Unpin,
    <C as StateEventContent>::StateKey: Unpin,
    <<C as RedactContent>::Redacted as RedactedStateEventContent>::StateKey: Unpin,
    <C as StaticStateEventContent>::Unsigned: Unpin,

§

impl<C> UnwindSafe for SyncStateEvent<C>where
    C: UnwindSafe,
    <C as RedactContent>::Redacted: UnwindSafe,
    <C as StateEventContent>::StateKey: UnwindSafe,
    <<C as RedactContent>::Redacted as RedactedStateEventContent>::StateKey: UnwindSafe,
    <C as StaticStateEventContent>::Unsigned: UnwindSafe,

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,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · 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> 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>,

const: unstable · 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<T> for T

§

type Output = T

Should always be Self
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.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere
    V: MultiLane<T>,

§

fn vzip(self) -> V

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> 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>,