pub struct LowDepthWarning {
pub n_reads: usize,
pub recommended_min: usize,
pub is_critical: bool,
}Expand description
A depth-below-threshold warning.
Fields§
§n_reads: usizeActual read count used to build this consensus.
recommended_min: usizeThe threshold that was not met.
is_critical: booltrue when n_reads < depth_critical_threshold (default < 5);
the consensus is likely wrong, not just uncertain.
Trait Implementations§
Source§impl Clone for LowDepthWarning
impl Clone for LowDepthWarning
Source§fn clone(&self) -> LowDepthWarning
fn clone(&self) -> LowDepthWarning
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 moreAuto Trait Implementations§
impl Freeze for LowDepthWarning
impl RefUnwindSafe for LowDepthWarning
impl Send for LowDepthWarning
impl Sync for LowDepthWarning
impl Unpin for LowDepthWarning
impl UnsafeUnpin for LowDepthWarning
impl UnwindSafe for LowDepthWarning
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