pub enum Cigar {
Match(u32),
Ins(u32),
Del(u32),
RefSkip(u32),
SoftClip(u32),
HardClip(u32),
Pad(u32),
Equal(u32),
Diff(u32),
}Variants§
Match(u32)
Ins(u32)
Del(u32)
RefSkip(u32)
SoftClip(u32)
HardClip(u32)
Pad(u32)
Equal(u32)
Diff(u32)
Implementations§
Trait Implementations§
impl Copy for Cigar
impl Eq for Cigar
Source§impl PartialOrd for Cigar
impl PartialOrd for Cigar
impl Send for Cigar
impl StructuralPartialEq for Cigar
impl Sync for Cigar
Auto Trait Implementations§
impl Freeze for Cigar
impl RefUnwindSafe for Cigar
impl Unpin for Cigar
impl UnsafeUnpin for Cigar
impl UnwindSafe for Cigar
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more