Enum ruma_events::AnyStateEventContent [−][src]
pub enum AnyStateEventContent {
Show variants
PolicyRuleRoom(RoomEventContent),
PolicyRuleServer(ServerEventContent),
PolicyRuleUser(UserEventContent),
RoomAliases(AliasesEventContent),
RoomAvatar(AvatarEventContent),
RoomCanonicalAlias(CanonicalAliasEventContent),
RoomCreate(CreateEventContent),
RoomEncryption(EncryptionEventContent),
RoomGuestAccess(GuestAccessEventContent),
RoomHistoryVisibility(HistoryVisibilityEventContent),
RoomJoinRules(JoinRulesEventContent),
RoomMember(MemberEventContent),
RoomName(NameEventContent),
RoomPinnedEvents(PinnedEventsEventContent),
RoomPowerLevels(PowerLevelsEventContent),
RoomServerAcl(ServerAclEventContent),
RoomThirdPartyInvite(ThirdPartyInviteEventContent),
RoomTombstone(TombstoneEventContent),
RoomTopic(TopicEventContent),
Custom(CustomEventContent),
}Expand description
Any state event.
Variants
PolicyRuleRoom(RoomEventContent)m.policy.rule.room
PolicyRuleServer(ServerEventContent)m.policy.rule.server
PolicyRuleUser(UserEventContent)m.policy.rule.user
RoomAliases(AliasesEventContent)m.room.aliases
RoomAvatar(AvatarEventContent)m.room.avatar
RoomCanonicalAlias(CanonicalAliasEventContent)m.room.canonical_alias
RoomCreate(CreateEventContent)m.room.create
RoomEncryption(EncryptionEventContent)m.room.encryption
RoomGuestAccess(GuestAccessEventContent)m.room.guest_access
RoomHistoryVisibility(HistoryVisibilityEventContent)m.room.history_visibility
RoomJoinRules(JoinRulesEventContent)m.room.join_rules
RoomMember(MemberEventContent)m.room.member
RoomName(NameEventContent)m.room.name
RoomPinnedEvents(PinnedEventsEventContent)m.room.pinned_events
RoomPowerLevels(PowerLevelsEventContent)m.room.power_levels
RoomServerAcl(ServerAclEventContent)m.room.server_acl
RoomThirdPartyInvite(ThirdPartyInviteEventContent)m.room.third_party_invite
RoomTombstone(TombstoneEventContent)m.room.tombstone
RoomTopic(TopicEventContent)m.room.topic
Custom(CustomEventContent)Content of an event not defined by the Matrix specification.
Trait Implementations
impl Clone for AnyStateEventContent[src]
impl Clone for AnyStateEventContent[src]fn clone(&self) -> AnyStateEventContent[src]
fn clone(&self) -> AnyStateEventContent[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for AnyStateEventContent[src]
impl Debug for AnyStateEventContent[src]impl EventContent for AnyStateEventContent[src]
impl EventContent for AnyStateEventContent[src]fn event_type(&self) -> &str[src]
fn event_type(&self) -> &str[src]A matrix event identifier, like m.room.message.
fn from_parts(event_type: &str, input: &RawValue) -> Result<Self>[src]
fn from_parts(event_type: &str, input: &RawValue) -> Result<Self>[src]Constructs the given event content.
impl RedactContent for AnyStateEventContent[src]
impl RedactContent for AnyStateEventContent[src]fn redact(self, version: &RoomVersionId) -> AnyRedactedStateEventContent[src]
fn redact(self, version: &RoomVersionId) -> AnyRedactedStateEventContent[src]Redacts Self given a RoomVersionId.
type Redacted = AnyRedactedStateEventContent
type Redacted = AnyRedactedStateEventContentThe redacted form of the event’s content.
impl Serialize for AnyStateEventContent[src]
impl Serialize for AnyStateEventContent[src]impl StateEventContent for AnyStateEventContent[src]
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
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Instrument for T[src]
impl<T> Instrument for T[src]fn instrument(self, span: Span) -> Instrumented<Self>[src]
fn instrument(self, span: Span) -> Instrumented<Self>[src]Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more
fn in_current_span(self) -> Instrumented<Self>[src]
fn in_current_span(self) -> Instrumented<Self>[src]impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,