pub enum ShardCheckStatus {
Verified,
Regenerated,
Failed(String),
}Expand description
Status for one shard verification.
Variants§
Verified
Manifest exists and matches shard contents.
Regenerated
Manifest was missing and regenerated.
Failed(String)
Manifest mismatch or missing (without regeneration).
Trait Implementations§
Source§impl Clone for ShardCheckStatus
impl Clone for ShardCheckStatus
Source§fn clone(&self) -> ShardCheckStatus
fn clone(&self) -> ShardCheckStatus
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 ShardCheckStatus
impl Debug for ShardCheckStatus
Source§impl PartialEq for ShardCheckStatus
impl PartialEq for ShardCheckStatus
impl Eq for ShardCheckStatus
impl StructuralPartialEq for ShardCheckStatus
Auto Trait Implementations§
impl Freeze for ShardCheckStatus
impl RefUnwindSafe for ShardCheckStatus
impl Send for ShardCheckStatus
impl Sync for ShardCheckStatus
impl Unpin for ShardCheckStatus
impl UnsafeUnpin for ShardCheckStatus
impl UnwindSafe for ShardCheckStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.