pub enum PeAlignmentType {
Concordant,
Overlap,
Contain,
Dovetail,
Discordant,
}Expand description
Classification of paired-end alignment types
Variants§
Concordant
Normal concordant alignment
Overlap
Mates overlap but neither contains the other
Contain
One mate contains the other
Dovetail
Mates dovetail (one extends past the other)
Discordant
Discordant alignment (doesn’t meet constraints)
Trait Implementations§
Source§impl Clone for PeAlignmentType
impl Clone for PeAlignmentType
Source§fn clone(&self) -> PeAlignmentType
fn clone(&self) -> PeAlignmentType
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 PeAlignmentType
impl Debug for PeAlignmentType
Source§impl Default for PeAlignmentType
impl Default for PeAlignmentType
Source§fn default() -> PeAlignmentType
fn default() -> PeAlignmentType
Returns the “default value” for a type. Read more
Source§impl PartialEq for PeAlignmentType
impl PartialEq for PeAlignmentType
impl Copy for PeAlignmentType
impl Eq for PeAlignmentType
impl StructuralPartialEq for PeAlignmentType
Auto Trait Implementations§
impl Freeze for PeAlignmentType
impl RefUnwindSafe for PeAlignmentType
impl Send for PeAlignmentType
impl Sync for PeAlignmentType
impl Unpin for PeAlignmentType
impl UnsafeUnpin for PeAlignmentType
impl UnwindSafe for PeAlignmentType
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