pub struct ObservedBase {
pub base: u8,
pub qual: Option<u8>,
pub read_pos: u32,
}Expand description
A base observed in the read at a genomic reference position.
Fields§
§base: u8§qual: Option<u8>§read_pos: u32Implementations§
Trait Implementations§
Source§impl Clone for ObservedBase
impl Clone for ObservedBase
Source§fn clone(&self) -> ObservedBase
fn clone(&self) -> ObservedBase
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ObservedBase
impl Debug for ObservedBase
Source§impl PartialEq for ObservedBase
impl PartialEq for ObservedBase
impl Copy for ObservedBase
impl Eq for ObservedBase
impl StructuralPartialEq for ObservedBase
Auto Trait Implementations§
impl Freeze for ObservedBase
impl RefUnwindSafe for ObservedBase
impl Send for ObservedBase
impl Sync for ObservedBase
impl Unpin for ObservedBase
impl UnsafeUnpin for ObservedBase
impl UnwindSafe for ObservedBase
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more