pub struct WrappedField {
pub name: String,
pub d: String,
pub f: String,
}Expand description
A single field wrapped with its Base64 encoding and SHA-256 fingerprint.
Fields§
§name: StringField name
d: StringBase64 encoded value
f: StringSHA-256 fingerprint of original value
Implementations§
Trait Implementations§
Source§impl Clone for WrappedField
impl Clone for WrappedField
Source§fn clone(&self) -> WrappedField
fn clone(&self) -> WrappedField
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 Debug for WrappedField
impl Debug for WrappedField
Source§impl<'de> Deserialize<'de> for WrappedField
impl<'de> Deserialize<'de> for WrappedField
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 WrappedField
impl RefUnwindSafe for WrappedField
impl Send for WrappedField
impl Sync for WrappedField
impl Unpin for WrappedField
impl UnsafeUnpin for WrappedField
impl UnwindSafe for WrappedField
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