#[non_exhaustive]pub enum AnyGlobalAccountDataEventContent {
Direct(DirectEventContent),
IdentityServer(IdentityServerEventContent),
IgnoredUserList(IgnoredUserListEventContent),
PushRules(PushRulesEventContent),
SecretStorageDefaultKey(SecretStorageDefaultKeyEventContent),
SecretStorageKey(SecretStorageKeyEventContent),
}
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.*
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,
) -> <AnyGlobalAccountDataEventContent as EventContent>::EventType
fn event_type( &self, ) -> <AnyGlobalAccountDataEventContent as EventContent>::EventType
Get the event’s type, like
m.room.message
.source§impl EventContentFromType for AnyGlobalAccountDataEventContent
impl EventContentFromType for AnyGlobalAccountDataEventContent
source§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.
source§impl From<DirectEventContent> for AnyGlobalAccountDataEventContent
impl From<DirectEventContent> for AnyGlobalAccountDataEventContent
source§fn from(c: DirectEventContent) -> AnyGlobalAccountDataEventContent
fn from(c: DirectEventContent) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
source§impl From<IdentityServerEventContent> for AnyGlobalAccountDataEventContent
impl From<IdentityServerEventContent> for AnyGlobalAccountDataEventContent
source§fn from(c: IdentityServerEventContent) -> AnyGlobalAccountDataEventContent
fn from(c: IdentityServerEventContent) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
source§impl From<IgnoredUserListEventContent> for AnyGlobalAccountDataEventContent
impl From<IgnoredUserListEventContent> for AnyGlobalAccountDataEventContent
source§fn from(c: IgnoredUserListEventContent) -> AnyGlobalAccountDataEventContent
fn from(c: IgnoredUserListEventContent) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
source§impl From<PushRulesEventContent> for AnyGlobalAccountDataEventContent
impl From<PushRulesEventContent> for AnyGlobalAccountDataEventContent
source§fn from(c: PushRulesEventContent) -> AnyGlobalAccountDataEventContent
fn from(c: PushRulesEventContent) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
source§impl From<SecretStorageDefaultKeyEventContent> for AnyGlobalAccountDataEventContent
impl From<SecretStorageDefaultKeyEventContent> for AnyGlobalAccountDataEventContent
source§fn from(
c: SecretStorageDefaultKeyEventContent,
) -> AnyGlobalAccountDataEventContent
fn from( c: SecretStorageDefaultKeyEventContent, ) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
source§impl From<SecretStorageKeyEventContent> for AnyGlobalAccountDataEventContent
impl From<SecretStorageKeyEventContent> for AnyGlobalAccountDataEventContent
source§fn from(c: SecretStorageKeyEventContent) -> AnyGlobalAccountDataEventContent
fn from(c: SecretStorageKeyEventContent) -> AnyGlobalAccountDataEventContent
Converts to this type from the input type.
source§impl Serialize for AnyGlobalAccountDataEventContent
impl Serialize for AnyGlobalAccountDataEventContent
source§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 GlobalAccountDataEventContent 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,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)