pub struct CorruptionResult {
pub is_corrupted: bool,
pub details: Vec<String>,
}Expand description
Corruption detection result
Fields§
§is_corrupted: boolWhether corruption was detected
details: Vec<String>Details about the corruption
Implementations§
Trait Implementations§
Source§impl Clone for CorruptionResult
impl Clone for CorruptionResult
Source§fn clone(&self) -> CorruptionResult
fn clone(&self) -> CorruptionResult
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 CorruptionResult
impl Debug for CorruptionResult
Source§impl<'de> Deserialize<'de> for CorruptionResult
impl<'de> Deserialize<'de> for CorruptionResult
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
Source§impl PartialEq for CorruptionResult
impl PartialEq for CorruptionResult
Source§impl Serialize for CorruptionResult
impl Serialize for CorruptionResult
impl StructuralPartialEq for CorruptionResult
Auto Trait Implementations§
impl Freeze for CorruptionResult
impl RefUnwindSafe for CorruptionResult
impl Send for CorruptionResult
impl Sync for CorruptionResult
impl Unpin for CorruptionResult
impl UnwindSafe for CorruptionResult
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