pub struct KeyWrapTableV1 {
pub version: u16,
pub volume_format_rev: u16,
pub table_length: u32,
pub flags: u32,
pub archive_uuid: [u8; 16],
pub session_id: [u8; 16],
pub recipient_record_count: u32,
pub records_offset: u32,
pub records_length: u32,
pub recipient_records: Vec<RecipientRecordV1>,
}Fields§
§version: u16§volume_format_rev: u16§table_length: u32§flags: u32§archive_uuid: [u8; 16]§session_id: [u8; 16]§recipient_record_count: u32§records_offset: u32§records_length: u32§recipient_records: Vec<RecipientRecordV1>Implementations§
Trait Implementations§
Source§impl Clone for KeyWrapTableV1
impl Clone for KeyWrapTableV1
Source§fn clone(&self) -> KeyWrapTableV1
fn clone(&self) -> KeyWrapTableV1
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 KeyWrapTableV1
impl Debug for KeyWrapTableV1
impl Eq for KeyWrapTableV1
Source§impl PartialEq for KeyWrapTableV1
impl PartialEq for KeyWrapTableV1
Source§fn eq(&self, other: &KeyWrapTableV1) -> bool
fn eq(&self, other: &KeyWrapTableV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for KeyWrapTableV1
Auto Trait Implementations§
impl Freeze for KeyWrapTableV1
impl RefUnwindSafe for KeyWrapTableV1
impl Send for KeyWrapTableV1
impl Sync for KeyWrapTableV1
impl Unpin for KeyWrapTableV1
impl UnsafeUnpin for KeyWrapTableV1
impl UnwindSafe for KeyWrapTableV1
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