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)Methods
impl Cigar[src]
fn len(&self) -> u32
Return the length the CIGAR.
fn char(&self) -> char
Return the character representing the CIGAR.
Trait Implementations
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 Eq for Cigar[src]
impl Debug for Cigar[src]
impl Clone for Cigar[src]
fn clone(&self) -> Cigar
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Display for Cigar[src]
fn fmt(&self, fmt: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more