pub struct NamedBlobEntry {
pub key: String,
pub value: Vec<u8>,
}Expand description
Wraps a named blob entry used by AAEntryXATBlob and AEAAuthData.
Fields§
§key: StringWraps the key field of NamedBlobEntry.
value: Vec<u8>Wraps the value field of NamedBlobEntry.
Trait Implementations§
Source§impl Clone for NamedBlobEntry
impl Clone for NamedBlobEntry
Source§fn clone(&self) -> NamedBlobEntry
fn clone(&self) -> NamedBlobEntry
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 NamedBlobEntry
impl Debug for NamedBlobEntry
impl Eq for NamedBlobEntry
Source§impl PartialEq for NamedBlobEntry
impl PartialEq for NamedBlobEntry
Source§fn eq(&self, other: &NamedBlobEntry) -> bool
fn eq(&self, other: &NamedBlobEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NamedBlobEntry
Auto Trait Implementations§
impl Freeze for NamedBlobEntry
impl RefUnwindSafe for NamedBlobEntry
impl Send for NamedBlobEntry
impl Sync for NamedBlobEntry
impl Unpin for NamedBlobEntry
impl UnsafeUnpin for NamedBlobEntry
impl UnwindSafe for NamedBlobEntry
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