#[non_exhaustive]pub enum AnyGlobalAccountDataEventContent {
Direct(DirectEventContent),
IdentityServer(IdentityServerEventContent),
IgnoredUserList(IgnoredUserListEventContent),
PushRules(PushRulesEventContent),
SecretStorageDefaultKey(SecretStorageDefaultKeyEventContent),
SecretStorageKey(SecretStorageKeyEventContent),
MediaPreviewConfig(MediaPreviewConfigEventContent),
UnstableMediaPreviewConfig(UnstableMediaPreviewConfigEventContent),
}
Expand description
Any global account data 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.
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.*
MediaPreviewConfig(MediaPreviewConfigEventContent)
m.media_preview_config
UnstableMediaPreviewConfig(UnstableMediaPreviewConfigEventContent)
io.element.msc4278.media_preview_config
Trait Implementations§
Source§impl Clone for AnyGlobalAccountDataEventContent
impl Clone for AnyGlobalAccountDataEventContent
Source§fn clone(&self) -> AnyGlobalAccountDataEventContent
fn clone(&self) -> AnyGlobalAccountDataEventContent
Returns a duplicate 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 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<MediaPreviewConfigEventContent> for AnyGlobalAccountDataEventContent
impl From<MediaPreviewConfigEventContent> for AnyGlobalAccountDataEventContent
Source§fn from(c: MediaPreviewConfigEventContent) -> Self
fn from(c: MediaPreviewConfigEventContent) -> 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.
Source§impl From<UnstableMediaPreviewConfigEventContent> for AnyGlobalAccountDataEventContent
impl From<UnstableMediaPreviewConfigEventContent> for AnyGlobalAccountDataEventContent
Source§fn from(c: UnstableMediaPreviewConfigEventContent) -> Self
fn from(c: UnstableMediaPreviewConfigEventContent) -> Self
Converts to this type from the input type.
Source§impl GlobalAccountDataEventContent for AnyGlobalAccountDataEventContent
impl GlobalAccountDataEventContent for AnyGlobalAccountDataEventContent
Source§fn event_type(&self) -> GlobalAccountDataEventType
fn event_type(&self) -> GlobalAccountDataEventType
Get the event’s type, like
m.push_rules
.Auto Trait Implementations§
impl Freeze for AnyGlobalAccountDataEventContent
impl RefUnwindSafe for AnyGlobalAccountDataEventContent
impl Send for AnyGlobalAccountDataEventContent
impl Sync for AnyGlobalAccountDataEventContent
impl Unpin for AnyGlobalAccountDataEventContent
impl UnwindSafe for AnyGlobalAccountDataEventContent
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more