pub enum AlignmentOutput {
Overlapping,
Clipped,
Contained,
}Expand description
Output options for alignments in a subgraph.
Variants§
Overlapping
Reads overlapping with the subgraph.
Clipped
Overlapping reads clipped to the subgraph.
Contained
Reads fully contained within the subgraph.
Trait Implementations§
Source§impl Clone for AlignmentOutput
impl Clone for AlignmentOutput
Source§fn clone(&self) -> AlignmentOutput
fn clone(&self) -> AlignmentOutput
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 AlignmentOutput
impl Debug for AlignmentOutput
Source§impl Display for AlignmentOutput
impl Display for AlignmentOutput
Source§impl Hash for AlignmentOutput
impl Hash for AlignmentOutput
Source§impl Ord for AlignmentOutput
impl Ord for AlignmentOutput
Source§fn cmp(&self, other: &AlignmentOutput) -> Ordering
fn cmp(&self, other: &AlignmentOutput) -> 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 AlignmentOutput
impl PartialEq for AlignmentOutput
Source§impl PartialOrd for AlignmentOutput
impl PartialOrd for AlignmentOutput
impl Copy for AlignmentOutput
impl Eq for AlignmentOutput
impl StructuralPartialEq for AlignmentOutput
Auto Trait Implementations§
impl Freeze for AlignmentOutput
impl RefUnwindSafe for AlignmentOutput
impl Send for AlignmentOutput
impl Sync for AlignmentOutput
impl Unpin for AlignmentOutput
impl UnsafeUnpin for AlignmentOutput
impl UnwindSafe for AlignmentOutput
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