Enum rust_htslib::bam::record::Cigar [] [src]

pub enum Cigar {
    Match(u32),
    Ins(u32),
    Del(u32),
    RefSkip(u32),
    SoftClip(u32),
    HardClip(u32),
    Pad(u32),
    Equal(u32),
    Diff(u32),
    Back(u32),
}

Variants

Match(u32)Ins(u32)Del(u32)RefSkip(u32)SoftClip(u32)HardClip(u32)Pad(u32)Equal(u32)Diff(u32)Back(u32)

Trait Implementations

impl Debug for Cigar
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for Cigar
[src]

fn eq(&self, __arg_0: &Cigar) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, __arg_0: &Cigar) -> bool

This method tests for !=.

impl Send for Cigar
[src]

impl Sync for Cigar
[src]