#[non_exhaustive]
pub enum AnyGlobalAccountDataEventContent {
Direct(DirectEventContent),
IdentityServer(IdentityServerEventContent),
IgnoredUserList(IgnoredUserListEventContent),
PushRules(PushRulesEventContent),
SecretStorageDefaultKey(SecretStorageDefaultKeyEventContent),
SecretStorageKey(SecretStorageKeyEventContent),
// some variants omitted
}
Expand description
Any global account data event.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
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
sourceimpl Clone for AnyGlobalAccountDataEventContent
impl Clone for AnyGlobalAccountDataEventContent
sourcefn clone(&self) -> AnyGlobalAccountDataEventContent
fn clone(&self) -> AnyGlobalAccountDataEventContent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl EventContent for AnyGlobalAccountDataEventContent
impl EventContent for AnyGlobalAccountDataEventContent
type EventType = GlobalAccountDataEventType
type EventType = GlobalAccountDataEventType
The Rust enum for the event kind’s known types.
sourcefn event_type(&self) -> Self::EventType
fn event_type(&self) -> Self::EventType
Get the event’s type, like m.room.message
.
sourceimpl From<DirectEventContent> for AnyGlobalAccountDataEventContent
impl From<DirectEventContent> for AnyGlobalAccountDataEventContent
sourcefn from(c: DirectEventContent) -> Self
fn from(c: DirectEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<IdentityServerEventContent> for AnyGlobalAccountDataEventContent
impl From<IdentityServerEventContent> for AnyGlobalAccountDataEventContent
sourcefn from(c: IdentityServerEventContent) -> Self
fn from(c: IdentityServerEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<IgnoredUserListEventContent> for AnyGlobalAccountDataEventContent
impl From<IgnoredUserListEventContent> for AnyGlobalAccountDataEventContent
sourcefn from(c: IgnoredUserListEventContent) -> Self
fn from(c: IgnoredUserListEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<PushRulesEventContent> for AnyGlobalAccountDataEventContent
impl From<PushRulesEventContent> for AnyGlobalAccountDataEventContent
sourcefn from(c: PushRulesEventContent) -> Self
fn from(c: PushRulesEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<SecretStorageDefaultKeyEventContent> for AnyGlobalAccountDataEventContent
impl From<SecretStorageDefaultKeyEventContent> for AnyGlobalAccountDataEventContent
sourcefn from(c: SecretStorageDefaultKeyEventContent) -> Self
fn from(c: SecretStorageDefaultKeyEventContent) -> Self
Converts to this type from the input type.
sourceimpl From<SecretStorageKeyEventContent> for AnyGlobalAccountDataEventContent
impl From<SecretStorageKeyEventContent> for AnyGlobalAccountDataEventContent
sourcefn from(c: SecretStorageKeyEventContent) -> Self
fn from(c: SecretStorageKeyEventContent) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl RefUnwindSafe for AnyGlobalAccountDataEventContent
impl Send for AnyGlobalAccountDataEventContent
impl Sync for AnyGlobalAccountDataEventContent
impl Unpin for AnyGlobalAccountDataEventContent
impl UnwindSafe for AnyGlobalAccountDataEventContent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more