pub struct VaultDekDecryptedData {
pub actor_id: String,
pub actor_source: VaultDekDecryptedDataActorSource,
pub actor_name: String,
pub key_id: String,
}Expand description
The event payload.
Fields§
§actor_id: StringThe unique identifier of the actor.
actor_source: VaultDekDecryptedDataActorSource§actor_name: StringThe name of the actor.
key_id: StringThe unique identifier of the data encryption key.
Trait Implementations§
Source§impl Clone for VaultDekDecryptedData
impl Clone for VaultDekDecryptedData
Source§fn clone(&self) -> VaultDekDecryptedData
fn clone(&self) -> VaultDekDecryptedData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VaultDekDecryptedData
impl Debug for VaultDekDecryptedData
Source§impl<'de> Deserialize<'de> for VaultDekDecryptedData
impl<'de> Deserialize<'de> for VaultDekDecryptedData
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
Auto Trait Implementations§
impl Freeze for VaultDekDecryptedData
impl RefUnwindSafe for VaultDekDecryptedData
impl Send for VaultDekDecryptedData
impl Sync for VaultDekDecryptedData
impl Unpin for VaultDekDecryptedData
impl UnsafeUnpin for VaultDekDecryptedData
impl UnwindSafe for VaultDekDecryptedData
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