Enum ruma_common::events::AnyStateEventContent
source · [−]#[non_exhaustive]
pub enum AnyStateEventContent {
Show 21 variants
PolicyRuleRoom(PolicyRuleRoomEventContent),
PolicyRuleServer(PolicyRuleServerEventContent),
PolicyRuleUser(PolicyRuleUserEventContent),
RoomAliases(RoomAliasesEventContent),
RoomAvatar(RoomAvatarEventContent),
RoomCanonicalAlias(RoomCanonicalAliasEventContent),
RoomCreate(RoomCreateEventContent),
RoomEncryption(RoomEncryptionEventContent),
RoomGuestAccess(RoomGuestAccessEventContent),
RoomHistoryVisibility(RoomHistoryVisibilityEventContent),
RoomJoinRules(RoomJoinRulesEventContent),
RoomMember(RoomMemberEventContent),
RoomName(RoomNameEventContent),
RoomPinnedEvents(RoomPinnedEventsEventContent),
RoomPowerLevels(RoomPowerLevelsEventContent),
RoomServerAcl(RoomServerAclEventContent),
RoomThirdPartyInvite(RoomThirdPartyInviteEventContent),
RoomTombstone(RoomTombstoneEventContent),
RoomTopic(RoomTopicEventContent),
SpaceChild(SpaceChildEventContent),
SpaceParent(SpaceParentEventContent),
// some variants omitted
}
Expand description
Any state event.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
PolicyRuleRoom(PolicyRuleRoomEventContent)
m.policy.rule.room
PolicyRuleServer(PolicyRuleServerEventContent)
m.policy.rule.server
PolicyRuleUser(PolicyRuleUserEventContent)
m.policy.rule.user
RoomAliases(RoomAliasesEventContent)
m.room.aliases
RoomAvatar(RoomAvatarEventContent)
m.room.avatar
RoomCanonicalAlias(RoomCanonicalAliasEventContent)
m.room.canonical_alias
RoomCreate(RoomCreateEventContent)
m.room.create
RoomEncryption(RoomEncryptionEventContent)
m.room.encryption
RoomGuestAccess(RoomGuestAccessEventContent)
m.room.guest_access
RoomHistoryVisibility(RoomHistoryVisibilityEventContent)
m.room.history_visibility
RoomJoinRules(RoomJoinRulesEventContent)
m.room.join_rules
RoomMember(RoomMemberEventContent)
m.room.member
RoomName(RoomNameEventContent)
m.room.name
RoomPinnedEvents(RoomPinnedEventsEventContent)
m.room.pinned_events
RoomPowerLevels(RoomPowerLevelsEventContent)
m.room.power_levels
RoomServerAcl(RoomServerAclEventContent)
m.room.server_acl
RoomThirdPartyInvite(RoomThirdPartyInviteEventContent)
m.room.third_party_invite
RoomTombstone(RoomTombstoneEventContent)
m.room.tombstone
RoomTopic(RoomTopicEventContent)
m.room.topic
SpaceChild(SpaceChildEventContent)
m.space.child
SpaceParent(SpaceParentEventContent)
m.space.parent
Trait Implementations
sourceimpl Clone for AnyStateEventContent
impl Clone for AnyStateEventContent
sourcefn clone(&self) -> AnyStateEventContent
fn clone(&self) -> AnyStateEventContent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AnyStateEventContent
impl Debug for AnyStateEventContent
sourceimpl EventContent for AnyStateEventContent
impl EventContent for AnyStateEventContent
type EventType = StateEventType
type EventType = StateEventType
The Rust enum for the event kind’s known types.
sourcefn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like m.room.message
.
sourceimpl From<PolicyRuleRoomEventContent> for AnyStateEventContent
impl From<PolicyRuleRoomEventContent> for AnyStateEventContent
sourcefn from(c: PolicyRuleRoomEventContent) -> Self
fn from(c: PolicyRuleRoomEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<PolicyRuleServerEventContent> for AnyStateEventContent
impl From<PolicyRuleServerEventContent> for AnyStateEventContent
sourcefn from(c: PolicyRuleServerEventContent) -> Self
fn from(c: PolicyRuleServerEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<PolicyRuleUserEventContent> for AnyStateEventContent
impl From<PolicyRuleUserEventContent> for AnyStateEventContent
sourcefn from(c: PolicyRuleUserEventContent) -> Self
fn from(c: PolicyRuleUserEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomAliasesEventContent> for AnyStateEventContent
impl From<RoomAliasesEventContent> for AnyStateEventContent
sourcefn from(c: RoomAliasesEventContent) -> Self
fn from(c: RoomAliasesEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomAvatarEventContent> for AnyStateEventContent
impl From<RoomAvatarEventContent> for AnyStateEventContent
sourcefn from(c: RoomAvatarEventContent) -> Self
fn from(c: RoomAvatarEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomCanonicalAliasEventContent> for AnyStateEventContent
impl From<RoomCanonicalAliasEventContent> for AnyStateEventContent
sourcefn from(c: RoomCanonicalAliasEventContent) -> Self
fn from(c: RoomCanonicalAliasEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomCreateEventContent> for AnyStateEventContent
impl From<RoomCreateEventContent> for AnyStateEventContent
sourcefn from(c: RoomCreateEventContent) -> Self
fn from(c: RoomCreateEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomEncryptionEventContent> for AnyStateEventContent
impl From<RoomEncryptionEventContent> for AnyStateEventContent
sourcefn from(c: RoomEncryptionEventContent) -> Self
fn from(c: RoomEncryptionEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomGuestAccessEventContent> for AnyStateEventContent
impl From<RoomGuestAccessEventContent> for AnyStateEventContent
sourcefn from(c: RoomGuestAccessEventContent) -> Self
fn from(c: RoomGuestAccessEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomHistoryVisibilityEventContent> for AnyStateEventContent
impl From<RoomHistoryVisibilityEventContent> for AnyStateEventContent
sourcefn from(c: RoomHistoryVisibilityEventContent) -> Self
fn from(c: RoomHistoryVisibilityEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomJoinRulesEventContent> for AnyStateEventContent
impl From<RoomJoinRulesEventContent> for AnyStateEventContent
sourcefn from(c: RoomJoinRulesEventContent) -> Self
fn from(c: RoomJoinRulesEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomMemberEventContent> for AnyStateEventContent
impl From<RoomMemberEventContent> for AnyStateEventContent
sourcefn from(c: RoomMemberEventContent) -> Self
fn from(c: RoomMemberEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomNameEventContent> for AnyStateEventContent
impl From<RoomNameEventContent> for AnyStateEventContent
sourcefn from(c: RoomNameEventContent) -> Self
fn from(c: RoomNameEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomPinnedEventsEventContent> for AnyStateEventContent
impl From<RoomPinnedEventsEventContent> for AnyStateEventContent
sourcefn from(c: RoomPinnedEventsEventContent) -> Self
fn from(c: RoomPinnedEventsEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomPowerLevelsEventContent> for AnyStateEventContent
impl From<RoomPowerLevelsEventContent> for AnyStateEventContent
sourcefn from(c: RoomPowerLevelsEventContent) -> Self
fn from(c: RoomPowerLevelsEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomServerAclEventContent> for AnyStateEventContent
impl From<RoomServerAclEventContent> for AnyStateEventContent
sourcefn from(c: RoomServerAclEventContent) -> Self
fn from(c: RoomServerAclEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomThirdPartyInviteEventContent> for AnyStateEventContent
impl From<RoomThirdPartyInviteEventContent> for AnyStateEventContent
sourcefn from(c: RoomThirdPartyInviteEventContent) -> Self
fn from(c: RoomThirdPartyInviteEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomTombstoneEventContent> for AnyStateEventContent
impl From<RoomTombstoneEventContent> for AnyStateEventContent
sourcefn from(c: RoomTombstoneEventContent) -> Self
fn from(c: RoomTombstoneEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<RoomTopicEventContent> for AnyStateEventContent
impl From<RoomTopicEventContent> for AnyStateEventContent
sourcefn from(c: RoomTopicEventContent) -> Self
fn from(c: RoomTopicEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<SpaceChildEventContent> for AnyStateEventContent
impl From<SpaceChildEventContent> for AnyStateEventContent
sourcefn from(c: SpaceChildEventContent) -> Self
fn from(c: SpaceChildEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<SpaceParentEventContent> for AnyStateEventContent
impl From<SpaceParentEventContent> for AnyStateEventContent
sourcefn from(c: SpaceParentEventContent) -> Self
fn from(c: SpaceParentEventContent) -> Self
Converts to this type from the input type.
sourceimpl Serialize for AnyStateEventContent
impl Serialize for AnyStateEventContent
Auto Trait Implementations
impl RefUnwindSafe for AnyStateEventContent
impl Send for AnyStateEventContent
impl Sync for AnyStateEventContent
impl Unpin for AnyStateEventContent
impl UnwindSafe for AnyStateEventContent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
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
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more