logo
#[non_exhaustive]
pub enum AnyStateEvent {
Show 21 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), // some variants omitted
}
Expand description

Any state event.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future 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

Implementations

Returns the type of this event.

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

Returns this event’s origin_server_ts field.

Returns this event’s room_id field.

Returns this event’s event_id field.

Returns this event’s sender field.

Returns this event’s state_key field.

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

The redacted form of the event.

Transforms self into a redacted form (removing most fields) according to the spec. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

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

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

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