pub struct RootAuthVerification {
pub format_version: u16,
pub volume_format_rev: u16,
pub archive_root: [u8; 32],
pub authenticator_id: u16,
pub signer_identity_type: u16,
pub signer_identity_bytes: Vec<u8>,
pub total_data_block_count: u64,
pub diagnostics: Vec<RootAuthDiagnostic>,
}Fields§
§format_version: u16§volume_format_rev: u16§archive_root: [u8; 32]§authenticator_id: u16§signer_identity_type: u16§signer_identity_bytes: Vec<u8>§total_data_block_count: u64§diagnostics: Vec<RootAuthDiagnostic>Trait Implementations§
Source§impl Clone for RootAuthVerification
impl Clone for RootAuthVerification
Source§fn clone(&self) -> RootAuthVerification
fn clone(&self) -> RootAuthVerification
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 RootAuthVerification
impl Debug for RootAuthVerification
impl Eq for RootAuthVerification
Source§impl PartialEq for RootAuthVerification
impl PartialEq for RootAuthVerification
Source§fn eq(&self, other: &RootAuthVerification) -> bool
fn eq(&self, other: &RootAuthVerification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RootAuthVerification
Auto Trait Implementations§
impl Freeze for RootAuthVerification
impl RefUnwindSafe for RootAuthVerification
impl Send for RootAuthVerification
impl Sync for RootAuthVerification
impl Unpin for RootAuthVerification
impl UnsafeUnpin for RootAuthVerification
impl UnwindSafe for RootAuthVerification
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