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
Formats the value using the given formatter.
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 !=.