pub struct VerifyReport {
pub mode: String,
pub checked: usize,
pub ok: usize,
pub missing: Vec<String>,
pub corrupt: Vec<String>,
pub projected_missing: Vec<String>,
pub projection_complete: Option<bool>,
pub complete: bool,
}Expand description
Result of verify.
Fields§
§mode: String§checked: usize§ok: usize§missing: Vec<String>§corrupt: Vec<String>§projected_missing: Vec<String>Exact absent paths declared outside this materialized projection.
projection_complete: Option<bool>Whether every byte that belongs to this materialized projection passed.
Present only for projection-aware verification; unlike complete, this
may be true while explicitly excluded bytes remain absent.
complete: boolTrue only when every considered required byte is present and valid.
Trait Implementations§
Source§impl Debug for VerifyReport
impl Debug for VerifyReport
Auto Trait Implementations§
impl Freeze for VerifyReport
impl RefUnwindSafe for VerifyReport
impl Send for VerifyReport
impl Sync for VerifyReport
impl Unpin for VerifyReport
impl UnsafeUnpin for VerifyReport
impl UnwindSafe for VerifyReport
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