Enum rust_htslib::bam::record::Cigar
source · 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§
source§impl PartialEq<Cigar> for Cigar
impl PartialEq<Cigar> for Cigar
source§impl PartialOrd<Cigar> for Cigar
impl PartialOrd<Cigar> for Cigar
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for Cigar
impl Eq for Cigar
impl Send for Cigar
impl StructuralEq for Cigar
impl StructuralPartialEq for Cigar
impl Sync for Cigar
Auto Trait Implementations§
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