Enum AnyGlobalAccountDataEventContent
#[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§
§impl Clone for AnyGlobalAccountDataEventContent
impl Clone for AnyGlobalAccountDataEventContent
§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 more§impl Debug for AnyGlobalAccountDataEventContent
impl Debug for AnyGlobalAccountDataEventContent
§impl EventContentFromType for AnyGlobalAccountDataEventContent
impl EventContentFromType for AnyGlobalAccountDataEventContent
§fn from_parts(
event_type: &str,
json: &RawValue,
) -> Result<AnyGlobalAccountDataEventContent, Error>
fn from_parts( event_type: &str, json: &RawValue, ) -> Result<AnyGlobalAccountDataEventContent, Error>
Constructs this event content from the given event type and JSON.
§impl From<DirectEventContent> for AnyGlobalAccountDataEventContent
impl From<DirectEventContent> for AnyGlobalAccountDataEventContent
§fn from(c: DirectEventContent) -> AnyGlobalAccountDataEventContent
fn from(c: DirectEventContent) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
§impl From<IdentityServerEventContent> for AnyGlobalAccountDataEventContent
impl From<IdentityServerEventContent> for AnyGlobalAccountDataEventContent
§fn from(c: IdentityServerEventContent) -> AnyGlobalAccountDataEventContent
fn from(c: IdentityServerEventContent) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
§impl From<IgnoredUserListEventContent> for AnyGlobalAccountDataEventContent
impl From<IgnoredUserListEventContent> for AnyGlobalAccountDataEventContent
§fn from(c: IgnoredUserListEventContent) -> AnyGlobalAccountDataEventContent
fn from(c: IgnoredUserListEventContent) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
§impl From<MediaPreviewConfigEventContent> for AnyGlobalAccountDataEventContent
impl From<MediaPreviewConfigEventContent> for AnyGlobalAccountDataEventContent
§fn from(c: MediaPreviewConfigEventContent) -> AnyGlobalAccountDataEventContent
fn from(c: MediaPreviewConfigEventContent) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
§impl From<PushRulesEventContent> for AnyGlobalAccountDataEventContent
impl From<PushRulesEventContent> for AnyGlobalAccountDataEventContent
§fn from(c: PushRulesEventContent) -> AnyGlobalAccountDataEventContent
fn from(c: PushRulesEventContent) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
§impl From<SecretStorageDefaultKeyEventContent> for AnyGlobalAccountDataEventContent
impl From<SecretStorageDefaultKeyEventContent> for AnyGlobalAccountDataEventContent
§fn from(
c: SecretStorageDefaultKeyEventContent,
) -> AnyGlobalAccountDataEventContent
fn from( c: SecretStorageDefaultKeyEventContent, ) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
§impl From<SecretStorageKeyEventContent> for AnyGlobalAccountDataEventContent
impl From<SecretStorageKeyEventContent> for AnyGlobalAccountDataEventContent
§fn from(c: SecretStorageKeyEventContent) -> AnyGlobalAccountDataEventContent
fn from(c: SecretStorageKeyEventContent) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
§impl From<UnstableMediaPreviewConfigEventContent> for AnyGlobalAccountDataEventContent
impl From<UnstableMediaPreviewConfigEventContent> for AnyGlobalAccountDataEventContent
§fn from(
c: UnstableMediaPreviewConfigEventContent,
) -> AnyGlobalAccountDataEventContent
fn from( c: UnstableMediaPreviewConfigEventContent, ) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
§impl GlobalAccountDataEventContent for AnyGlobalAccountDataEventContent
impl GlobalAccountDataEventContent for AnyGlobalAccountDataEventContent
§fn event_type(&self) -> GlobalAccountDataEventType
fn event_type(&self) -> GlobalAccountDataEventType
Get the event’s type, like
m.push_rules
.§impl Serialize for AnyGlobalAccountDataEventContent
impl Serialize for AnyGlobalAccountDataEventContent
§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl JsonCastable<AnyGlobalAccountDataEventContent> for DirectEventContent
impl JsonCastable<AnyGlobalAccountDataEventContent> for IdentityServerEventContent
impl JsonCastable<AnyGlobalAccountDataEventContent> for IgnoredUserListEventContent
impl JsonCastable<AnyGlobalAccountDataEventContent> for MediaPreviewConfigEventContent
impl JsonCastable<AnyGlobalAccountDataEventContent> for PushRulesEventContent
impl JsonCastable<AnyGlobalAccountDataEventContent> for SecretStorageDefaultKeyEventContent
impl JsonCastable<AnyGlobalAccountDataEventContent> for SecretStorageKeyEventContent
impl JsonCastable<AnyGlobalAccountDataEventContent> for UnstableMediaPreviewConfigEventContent
impl JsonCastable<Map<String, Value>> for AnyGlobalAccountDataEventContent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> CompatExt for T
impl<T> CompatExt for T
Source§impl<T, UT> HandleAlloc<UT> for T
impl<T, UT> HandleAlloc<UT> for T
Source§fn consume_handle(handle: Handle) -> Arc<T>
fn consume_handle(handle: Handle) -> Arc<T>
Consume a handle, getting back the initial
Arc<>
Source§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more