pub enum HaplotypeOutput {
All,
Distinct,
ReferenceOnly,
}Expand description
Output options for the haplotypes in the subgraph.
Variants§
All
Output all haplotypes as separate paths.
Distinct
Output only distinct haplotypes with the number of duplicates stored in the weight field.
ReferenceOnly
Output only the reference path.
Trait Implementations§
Source§impl Clone for HaplotypeOutput
impl Clone for HaplotypeOutput
Source§fn clone(&self) -> HaplotypeOutput
fn clone(&self) -> HaplotypeOutput
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 HaplotypeOutput
impl Debug for HaplotypeOutput
Source§impl Display for HaplotypeOutput
impl Display for HaplotypeOutput
Source§impl Hash for HaplotypeOutput
impl Hash for HaplotypeOutput
Source§impl Ord for HaplotypeOutput
impl Ord for HaplotypeOutput
Source§fn cmp(&self, other: &HaplotypeOutput) -> Ordering
fn cmp(&self, other: &HaplotypeOutput) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for HaplotypeOutput
impl PartialEq for HaplotypeOutput
Source§impl PartialOrd for HaplotypeOutput
impl PartialOrd for HaplotypeOutput
impl Copy for HaplotypeOutput
impl Eq for HaplotypeOutput
impl StructuralPartialEq for HaplotypeOutput
Auto Trait Implementations§
impl Freeze for HaplotypeOutput
impl RefUnwindSafe for HaplotypeOutput
impl Send for HaplotypeOutput
impl Sync for HaplotypeOutput
impl Unpin for HaplotypeOutput
impl UnsafeUnpin for HaplotypeOutput
impl UnwindSafe for HaplotypeOutput
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