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

Methods

impl Cigar
[src]

[src]

Return the length of the CIGAR.

[src]

Return the character representing the CIGAR.

Trait Implementations

impl PartialEq for Cigar
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for Cigar
[src]

impl Debug for Cigar
[src]

[src]

Formats the value using the given formatter.

impl Clone for Cigar
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for Cigar
[src]

[src]

Formats the value using the given formatter. Read more

impl Send for Cigar
[src]

impl Sync for Cigar
[src]