[][src]Enum varlociraptor::utils::Overlap

pub enum Overlap {
    Enclosing(u32),
    Left(u32),
    Right(u32),
    Some(u32),
    None,
}

Describes whether read overlaps a variant in a valid or invalid (too large overlap) way.

Variants

Enclosing(u32)Left(u32)Right(u32)Some(u32)None

Methods

impl Overlap[src]

pub fn new(
    record: &Record,
    cigar: &CigarStringView,
    start: u32,
    variant: &Variant,
    consider_clips: bool
) -> Result<Overlap, Box<dyn Error>>
[src]

pub fn is_enclosing(&self) -> bool[src]

pub fn is_none(&self) -> bool[src]

pub fn len(&self) -> u32[src]

Trait Implementations

impl Debug for Overlap[src]

Auto Trait Implementations

impl Send for Overlap

impl Sync for Overlap

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]