pub struct BaseSummary {
pub len: usize,
pub a: usize,
pub c: usize,
pub g: usize,
pub t: usize,
pub n: usize,
}Expand description
Summary of a packed DNA sequence.
Fields§
§len: usizeNumber of bases observed.
a: usizeNumber of canonical A bases.
c: usizeNumber of canonical C bases.
g: usizeNumber of canonical G bases.
t: usizeNumber of canonical T bases.
n: usizeNumber of ambiguous or non-canonical bases.
Implementations§
Trait Implementations§
Source§impl Clone for BaseSummary
impl Clone for BaseSummary
Source§fn clone(&self) -> BaseSummary
fn clone(&self) -> BaseSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BaseSummary
Source§impl Debug for BaseSummary
impl Debug for BaseSummary
Source§impl Default for BaseSummary
impl Default for BaseSummary
Source§fn default() -> BaseSummary
fn default() -> BaseSummary
Returns the “default value” for a type. Read more
impl Eq for BaseSummary
Source§impl PartialEq for BaseSummary
impl PartialEq for BaseSummary
Source§fn eq(&self, other: &BaseSummary) -> bool
fn eq(&self, other: &BaseSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BaseSummary
Auto Trait Implementations§
impl Freeze for BaseSummary
impl RefUnwindSafe for BaseSummary
impl Send for BaseSummary
impl Sync for BaseSummary
impl Unpin for BaseSummary
impl UnsafeUnpin for BaseSummary
impl UnwindSafe for BaseSummary
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