pub enum AnyStateEvent {
Show 22 variants PolicyRuleRoom(PolicyRuleRoomEvent), PolicyRuleServer(PolicyRuleServerEvent), PolicyRuleUser(PolicyRuleUserEvent), RoomAliases(RoomAliasesEvent), RoomAvatar(RoomAvatarEvent), RoomCanonicalAlias(RoomCanonicalAliasEvent), RoomCreate(RoomCreateEvent), RoomEncryption(RoomEncryptionEvent), RoomGuestAccess(RoomGuestAccessEvent), RoomHistoryVisibility(RoomHistoryVisibilityEvent), RoomJoinRules(RoomJoinRulesEvent), RoomMember(RoomMemberEvent), RoomName(RoomNameEvent), RoomPinnedEvents(RoomPinnedEventsEvent), RoomPowerLevels(RoomPowerLevelsEvent), RoomServerAcl(RoomServerAclEvent), RoomThirdPartyInvite(RoomThirdPartyInviteEvent), RoomTombstone(RoomTombstoneEvent), RoomTopic(RoomTopicEvent), SpaceChild(SpaceChildEvent), SpaceParent(SpaceParentEvent), CallMember(CallMemberEvent), // some variants omitted
}
Expand description

Any state event.

Variants§

§

PolicyRuleRoom(PolicyRuleRoomEvent)

m.policy.rule.room

§

PolicyRuleServer(PolicyRuleServerEvent)

m.policy.rule.server

§

PolicyRuleUser(PolicyRuleUserEvent)

m.policy.rule.user

§

RoomAliases(RoomAliasesEvent)

m.room.aliases

§

RoomAvatar(RoomAvatarEvent)

m.room.avatar

§

RoomCanonicalAlias(RoomCanonicalAliasEvent)

m.room.canonical_alias

§

RoomCreate(RoomCreateEvent)

m.room.create

§

RoomEncryption(RoomEncryptionEvent)

m.room.encryption

§

RoomGuestAccess(RoomGuestAccessEvent)

m.room.guest_access

§

RoomHistoryVisibility(RoomHistoryVisibilityEvent)

m.room.history_visibility

§

RoomJoinRules(RoomJoinRulesEvent)

m.room.join_rules

§

RoomMember(RoomMemberEvent)

m.room.member

§

RoomName(RoomNameEvent)

m.room.name

§

RoomPinnedEvents(RoomPinnedEventsEvent)

m.room.pinned_events

§

RoomPowerLevels(RoomPowerLevelsEvent)

m.room.power_levels

§

RoomServerAcl(RoomServerAclEvent)

m.room.server_acl

§

RoomThirdPartyInvite(RoomThirdPartyInviteEvent)

m.room.third_party_invite

§

RoomTombstone(RoomTombstoneEvent)

m.room.tombstone

§

RoomTopic(RoomTopicEvent)

m.room.topic

§

SpaceChild(SpaceChildEvent)

m.space.child

§

SpaceParent(SpaceParentEvent)

m.space.parent

§

CallMember(CallMemberEvent)

m.call.member

This variant uses the unstable type org.matrix.msc3401.call.member.

This variant can also be deserialized from the m.call.member type.

Implementations§

source§

impl AnyStateEvent

source

pub fn event_type(&self) -> StateEventType

Returns the type of this event.

source

pub fn original_content(&self) -> Option<AnyStateEventContent>

Returns the content for this event if it is not redacted, or None if it is.

source

pub fn content(&self) -> AnyFullStateEventContent

Returns the content of this state event.

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 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 state_key(&self) -> &str

Returns this event’s state_key field.

source

pub fn transaction_id(&self) -> Option<&TransactionId>

Returns this event’s transaction_id from inside unsigned, if there is one.

Trait Implementations§

source§

impl Clone for AnyStateEvent

source§

fn clone(&self) -> AnyStateEvent

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 Debug for AnyStateEvent

source§

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

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

impl<'de> Deserialize<'de> for AnyStateEvent

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<AnyStateEvent> for AnySyncStateEvent

source§

fn from(event: AnyStateEvent) -> Self

Converts to this type from the input type.
source§

impl From<AnyStateEvent> for AnyTimelineEvent

source§

fn from(c: AnyStateEvent) -> Self

Converts to this type from the input type.
source§

impl From<StateEvent<CallMemberEventContent>> for AnyStateEvent

source§

fn from(c: CallMemberEvent) -> 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<RoomAliasesEventContent>> for AnyStateEvent

source§

fn from(c: RoomAliasesEvent) -> 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<RoomJoinRulesEventContent>> for AnyStateEvent

source§

fn from(c: RoomJoinRulesEvent) -> 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<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.

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