pub struct EncryptedValue { /* private fields */ }
Expand description
Encrypted value, ready for storage, as created by the
StoreCipher::encrypt_value_data()
Trait Implementations§
source§impl Debug for EncryptedValue
impl Debug for EncryptedValue
source§impl<'de> Deserialize<'de> for EncryptedValue
impl<'de> Deserialize<'de> for EncryptedValue
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 From<EncryptedValue> for EncryptedValueBase64
impl From<EncryptedValue> for EncryptedValueBase64
source§fn from(value: EncryptedValue) -> Self
fn from(value: EncryptedValue) -> Self
Converts to this type from the input type.
source§impl PartialEq for EncryptedValue
impl PartialEq for EncryptedValue
source§fn eq(&self, other: &EncryptedValue) -> bool
fn eq(&self, other: &EncryptedValue) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for EncryptedValue
impl Serialize for EncryptedValue
source§impl TryFrom<EncryptedValueBase64> for EncryptedValue
impl TryFrom<EncryptedValueBase64> for EncryptedValue
§type Error = EncryptedValueBase64DecodeError
type Error = EncryptedValueBase64DecodeError
The type returned in the event of a conversion error.
impl Eq for EncryptedValue
impl StructuralPartialEq for EncryptedValue
Auto Trait Implementations§
impl Freeze for EncryptedValue
impl RefUnwindSafe for EncryptedValue
impl Send for EncryptedValue
impl Sync for EncryptedValue
impl Unpin for EncryptedValue
impl UnwindSafe for EncryptedValue
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