pub enum VerifyPolicy {
Auto,
Force,
Off,
}Expand description
--verify <auto|force|off> — post-write roundtrip decode control.
Variants§
Auto
Verify when output is under 100 MB; skip otherwise with a warning.
Force
Always verify, regardless of output size.
Off
Skip verify entirely.
Trait Implementations§
Source§impl Clone for VerifyPolicy
impl Clone for VerifyPolicy
Source§fn clone(&self) -> VerifyPolicy
fn clone(&self) -> VerifyPolicy
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 VerifyPolicy
impl Debug for VerifyPolicy
Source§impl Default for VerifyPolicy
impl Default for VerifyPolicy
Source§fn default() -> VerifyPolicy
fn default() -> VerifyPolicy
Returns the “default value” for a type. Read more
Source§impl PartialEq for VerifyPolicy
impl PartialEq for VerifyPolicy
Source§fn eq(&self, other: &VerifyPolicy) -> bool
fn eq(&self, other: &VerifyPolicy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VerifyPolicy
impl Eq for VerifyPolicy
impl StructuralPartialEq for VerifyPolicy
Auto Trait Implementations§
impl Freeze for VerifyPolicy
impl RefUnwindSafe for VerifyPolicy
impl Send for VerifyPolicy
impl Sync for VerifyPolicy
impl Unpin for VerifyPolicy
impl UnsafeUnpin for VerifyPolicy
impl UnwindSafe for VerifyPolicy
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