pub struct CigarOp {
pub kind: CigarKind,
pub len: u32,
}Expand description
A single CIGAR operation: a kind and a length.
Fields§
§kind: CigarKindThe operation kind (M, I, D, …).
len: u32Number of bases consumed by this operation.
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