pub enum AnyGlobalAccountDataEventContent {
Direct(DirectEventContent),
IdentityServer(IdentityServerEventContent),
IgnoredUserList(IgnoredUserListEventContent),
PushRules(PushRulesEventContent),
SecretStorageDefaultKey(SecretStorageDefaultKeyEventContent),
SecretStorageKey(SecretStorageKeyEventContent),
// some variants omitted
}Available on crate feature
events only.Expand description
Any global account data event.
Variants§
Direct(DirectEventContent)
m.direct
IdentityServer(IdentityServerEventContent)
m.identity_server
IgnoredUserList(IgnoredUserListEventContent)
m.ignored_user_list
PushRules(PushRulesEventContent)
m.push_rules
SecretStorageDefaultKey(SecretStorageDefaultKeyEventContent)
m.secret_storage.default_key
SecretStorageKey(SecretStorageKeyEventContent)
m.secret_storage.key.*
Trait Implementations§
source§impl Clone for AnyGlobalAccountDataEventContent
impl Clone for AnyGlobalAccountDataEventContent
source§fn clone(&self) -> AnyGlobalAccountDataEventContent
fn clone(&self) -> AnyGlobalAccountDataEventContent
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl EventContent for AnyGlobalAccountDataEventContent
impl EventContent for AnyGlobalAccountDataEventContent
§type EventType = GlobalAccountDataEventType
type EventType = GlobalAccountDataEventType
The Rust enum for the event kind’s known types.
source§fn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like
m.room.message.source§impl From<DirectEventContent> for AnyGlobalAccountDataEventContent
impl From<DirectEventContent> for AnyGlobalAccountDataEventContent
source§fn from(c: DirectEventContent) -> Self
fn from(c: DirectEventContent) -> Self
Converts to this type from the input type.
source§impl From<IdentityServerEventContent> for AnyGlobalAccountDataEventContent
impl From<IdentityServerEventContent> for AnyGlobalAccountDataEventContent
source§fn from(c: IdentityServerEventContent) -> Self
fn from(c: IdentityServerEventContent) -> Self
Converts to this type from the input type.
source§impl From<IgnoredUserListEventContent> for AnyGlobalAccountDataEventContent
impl From<IgnoredUserListEventContent> for AnyGlobalAccountDataEventContent
source§fn from(c: IgnoredUserListEventContent) -> Self
fn from(c: IgnoredUserListEventContent) -> Self
Converts to this type from the input type.
source§impl From<PushRulesEventContent> for AnyGlobalAccountDataEventContent
impl From<PushRulesEventContent> for AnyGlobalAccountDataEventContent
source§fn from(c: PushRulesEventContent) -> Self
fn from(c: PushRulesEventContent) -> Self
Converts to this type from the input type.
source§impl From<SecretStorageDefaultKeyEventContent> for AnyGlobalAccountDataEventContent
impl From<SecretStorageDefaultKeyEventContent> for AnyGlobalAccountDataEventContent
source§fn from(c: SecretStorageDefaultKeyEventContent) -> Self
fn from(c: SecretStorageDefaultKeyEventContent) -> Self
Converts to this type from the input type.
source§impl From<SecretStorageKeyEventContent> for AnyGlobalAccountDataEventContent
impl From<SecretStorageKeyEventContent> for AnyGlobalAccountDataEventContent
source§fn from(c: SecretStorageKeyEventContent) -> Self
fn from(c: SecretStorageKeyEventContent) -> Self
Converts to this type from the input type.