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

Trait Implementations

impl PartialEq for Cigar
[src]

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

This method tests for !=.

impl Debug for Cigar
[src]

Formats the value using the given formatter.

impl Send for Cigar
[src]

impl Sync for Cigar
[src]