pub enum DataIntegrityProfile {
Checksum(Box<ChecksumDataIntegrityProfile>),
DoneFile(Box<DoneFileDataIntegrityProfile>),
ByteCheck(Box<ByteCheckDataIntegrityProfile>),
}Variants§
Checksum(Box<ChecksumDataIntegrityProfile>)
DoneFile(Box<DoneFileDataIntegrityProfile>)
ByteCheck(Box<ByteCheckDataIntegrityProfile>)
Trait Implementations§
Source§impl Clone for DataIntegrityProfile
impl Clone for DataIntegrityProfile
Source§fn clone(&self) -> DataIntegrityProfile
fn clone(&self) -> DataIntegrityProfile
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 DataIntegrityProfile
impl Debug for DataIntegrityProfile
Source§impl Default for DataIntegrityProfile
impl Default for DataIntegrityProfile
Source§impl<'de> Deserialize<'de> for DataIntegrityProfile
impl<'de> Deserialize<'de> for DataIntegrityProfile
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 DataIntegrityProfile
impl PartialEq for DataIntegrityProfile
Source§impl Serialize for DataIntegrityProfile
impl Serialize for DataIntegrityProfile
impl StructuralPartialEq for DataIntegrityProfile
Auto Trait Implementations§
impl Freeze for DataIntegrityProfile
impl RefUnwindSafe for DataIntegrityProfile
impl Send for DataIntegrityProfile
impl Sync for DataIntegrityProfile
impl Unpin for DataIntegrityProfile
impl UnsafeUnpin for DataIntegrityProfile
impl UnwindSafe for DataIntegrityProfile
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