pub struct CigarOp {
pub op: u8,
pub len: u32,
}Expand description
A single CIGAR operation with BAM encoding.
Fields§
§op: u8Operation code: M=0, I=1, D=2, N=3, S=4, H=5, P=6, ==7, X=8.
len: u32Length of the operation.
Implementations§
Trait Implementations§
impl Copy for CigarOp
impl Eq for CigarOp
impl StructuralPartialEq for CigarOp
Auto Trait Implementations§
impl Freeze for CigarOp
impl RefUnwindSafe for CigarOp
impl Send for CigarOp
impl Sync for CigarOp
impl Unpin for CigarOp
impl UnsafeUnpin for CigarOp
impl UnwindSafe for CigarOp
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