#[non_exhaustive]pub struct SecretStorageDefaultKeyEventContent {
    pub key_id: String,
}Available on crate feature 
events only.Expand description
The payload for DefaultKeyEvent.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.key_id: StringThe ID of the default key.
Implementations§
Source§impl SecretStorageDefaultKeyEventContent
 
impl SecretStorageDefaultKeyEventContent
Sourcepub fn new(key_id: String) -> SecretStorageDefaultKeyEventContent
 
pub fn new(key_id: String) -> SecretStorageDefaultKeyEventContent
Create a new SecretStorageDefaultKeyEventContent with the given key ID.
Uploading this to the account data will mark the secret storage key with the given key ID as 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 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<'de> Deserialize<'de> for SecretStorageDefaultKeyEventContent
 
impl<'de> Deserialize<'de> for SecretStorageDefaultKeyEventContent
Source§fn deserialize<__D>(
    __deserializer: __D,
) -> Result<SecretStorageDefaultKeyEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D,
) -> Result<SecretStorageDefaultKeyEventContent, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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 GlobalAccountDataEventContent for SecretStorageDefaultKeyEventContent
 
impl GlobalAccountDataEventContent for SecretStorageDefaultKeyEventContent
Source§fn event_type(&self) -> GlobalAccountDataEventType
 
fn event_type(&self) -> GlobalAccountDataEventType
Get the event’s type, like 
m.push_rules.Source§impl Serialize for SecretStorageDefaultKeyEventContent
 
impl Serialize for SecretStorageDefaultKeyEventContent
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 JsonCastable<AnyGlobalAccountDataEventContent> for SecretStorageDefaultKeyEventContent
impl JsonCastable<Map<String, Value>> for SecretStorageDefaultKeyEventContent
Auto Trait Implementations§
impl Freeze for SecretStorageDefaultKeyEventContent
impl RefUnwindSafe for SecretStorageDefaultKeyEventContent
impl Send for SecretStorageDefaultKeyEventContent
impl Sync for SecretStorageDefaultKeyEventContent
impl Unpin for SecretStorageDefaultKeyEventContent
impl UnwindSafe for SecretStorageDefaultKeyEventContent
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