pub struct EncryptedKeyRecord {
pub cipher: RecordCipher,
pub width: u32,
pub kdf: RecordKdf,
pub salt: String,
pub nonce: String,
pub ciphertext: String,
}Fields§
§cipher: RecordCipher§width: u32§kdf: RecordKdf§salt: String§nonce: String§ciphertext: StringTrait Implementations§
Source§impl Clone for EncryptedKeyRecord
impl Clone for EncryptedKeyRecord
Source§fn clone(&self) -> EncryptedKeyRecord
fn clone(&self) -> EncryptedKeyRecord
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 EncryptedKeyRecord
impl Debug for EncryptedKeyRecord
Source§impl<'de> Deserialize<'de> for EncryptedKeyRecord
impl<'de> Deserialize<'de> for EncryptedKeyRecord
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
impl Eq for EncryptedKeyRecord
Source§impl PartialEq for EncryptedKeyRecord
impl PartialEq for EncryptedKeyRecord
Source§impl Serialize for EncryptedKeyRecord
impl Serialize for EncryptedKeyRecord
impl StructuralPartialEq for EncryptedKeyRecord
Auto Trait Implementations§
impl Freeze for EncryptedKeyRecord
impl RefUnwindSafe for EncryptedKeyRecord
impl Send for EncryptedKeyRecord
impl Sync for EncryptedKeyRecord
impl Unpin for EncryptedKeyRecord
impl UnsafeUnpin for EncryptedKeyRecord
impl UnwindSafe for EncryptedKeyRecord
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