pub struct InteriorSupportWarning {
pub position: usize,
pub fraction: f32,
}Expand description
An interior position with near-zero path-weight support.
Fields§
§position: usize0-indexed position in the consensus sequence.
fraction: f32path_weights[position] / n_reads at the flagged position.
Trait Implementations§
Source§impl Clone for InteriorSupportWarning
impl Clone for InteriorSupportWarning
Source§fn clone(&self) -> InteriorSupportWarning
fn clone(&self) -> InteriorSupportWarning
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 InteriorSupportWarning
impl RefUnwindSafe for InteriorSupportWarning
impl Send for InteriorSupportWarning
impl Sync for InteriorSupportWarning
impl Unpin for InteriorSupportWarning
impl UnsafeUnpin for InteriorSupportWarning
impl UnwindSafe for InteriorSupportWarning
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