pub struct StateFileAttestation {
pub locations_checked: usize,
pub valid_files_found: usize,
pub corrupted_files_found: usize,
pub missing_files: usize,
pub observations: Vec<StateFileObservation>,
}Expand description
State file attestation - factual observation about state files
Fields§
§locations_checked: usizeNumber of state file locations checked
valid_files_found: usizeNumber of valid state files found
corrupted_files_found: usizeNumber of corrupted/tampered files found
missing_files: usizeNumber of missing files
observations: Vec<StateFileObservation>State file observations
Trait Implementations§
Source§impl Clone for StateFileAttestation
impl Clone for StateFileAttestation
Source§fn clone(&self) -> StateFileAttestation
fn clone(&self) -> StateFileAttestation
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 StateFileAttestation
impl Debug for StateFileAttestation
Source§impl<'de> Deserialize<'de> for StateFileAttestation
impl<'de> Deserialize<'de> for StateFileAttestation
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 StateFileAttestation
impl RefUnwindSafe for StateFileAttestation
impl Send for StateFileAttestation
impl Sync for StateFileAttestation
impl Unpin for StateFileAttestation
impl UnsafeUnpin for StateFileAttestation
impl UnwindSafe for StateFileAttestation
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