pub struct EncryptedValueBase64 { /* private fields */ }
Expand description
Encrypted value, ready for storage, as created by the
StoreCipher::encrypt_value_base64_data()
Implementations§
Trait Implementations§
source§impl Debug for EncryptedValueBase64
impl Debug for EncryptedValueBase64
source§impl<'de> Deserialize<'de> for EncryptedValueBase64
impl<'de> Deserialize<'de> for EncryptedValueBase64
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 EncryptedValueBase64
impl PartialEq for EncryptedValueBase64
source§fn eq(&self, other: &EncryptedValueBase64) -> bool
fn eq(&self, other: &EncryptedValueBase64) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for EncryptedValueBase64
impl Serialize for EncryptedValueBase64
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 EncryptedValueBase64
impl StructuralPartialEq for EncryptedValueBase64
Auto Trait Implementations§
impl Freeze for EncryptedValueBase64
impl RefUnwindSafe for EncryptedValueBase64
impl Send for EncryptedValueBase64
impl Sync for EncryptedValueBase64
impl Unpin for EncryptedValueBase64
impl UnwindSafe for EncryptedValueBase64
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