Struct ruma_common::events::secret_storage::default_key::SecretStorageDefaultKeyEventContent
source · pub struct SecretStorageDefaultKeyEventContent {
pub key: String,
}Available on crate feature
events only.Expand description
The payload for DefaultKeyEvent.
Fields§
§key: StringThe ID of the default key.
Trait Implementations§
source§impl Clone for SecretStorageDefaultKeyEventContent
impl Clone for SecretStorageDefaultKeyEventContent
source§fn clone(&self) -> SecretStorageDefaultKeyEventContent
fn clone(&self) -> SecretStorageDefaultKeyEventContent
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<'de> Deserialize<'de> for SecretStorageDefaultKeyEventContent
impl<'de> Deserialize<'de> for SecretStorageDefaultKeyEventContent
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl EventContent for SecretStorageDefaultKeyEventContent
impl EventContent for SecretStorageDefaultKeyEventContent
§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<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.