pub struct CorrectVerifyReport {
pub file: String,
pub sidecar: String,
pub status: String,
pub verified: bool,
pub health: Option<ShardHealth>,
}Expand description
Result of a read-only standalone verify.
Fields§
§file: String§sidecar: String§status: String"verified" (intact) or "needs_repair" (corruption detected).
verified: bool§health: Option<ShardHealth>Per-shard / per-copy health readout from a full grid scan (Ehud #9): how
many data/parity shards are damaged and whether any group is beyond
recovery. None only if a scan was not run.
Trait Implementations§
Source§impl Clone for CorrectVerifyReport
impl Clone for CorrectVerifyReport
Source§fn clone(&self) -> CorrectVerifyReport
fn clone(&self) -> CorrectVerifyReport
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 CorrectVerifyReport
impl Debug for CorrectVerifyReport
Auto Trait Implementations§
impl Freeze for CorrectVerifyReport
impl RefUnwindSafe for CorrectVerifyReport
impl Send for CorrectVerifyReport
impl Sync for CorrectVerifyReport
impl Unpin for CorrectVerifyReport
impl UnsafeUnpin for CorrectVerifyReport
impl UnwindSafe for CorrectVerifyReport
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