pub struct RoleCounts {
pub assembled_molecule: usize,
pub alt_scaffold: usize,
pub fix_patch: usize,
pub novel_patch: usize,
pub unlocalized_scaffold: usize,
pub unplaced_scaffold: usize,
pub unknown: usize,
}Expand description
Counts of contigs by sequence role
Fields§
§assembled_molecule: usize§alt_scaffold: usize§fix_patch: usize§novel_patch: usize§unlocalized_scaffold: usize§unplaced_scaffold: usize§unknown: usizeTrait Implementations§
Source§impl Clone for RoleCounts
impl Clone for RoleCounts
Source§fn clone(&self) -> RoleCounts
fn clone(&self) -> RoleCounts
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 RoleCounts
impl Debug for RoleCounts
Source§impl Default for RoleCounts
impl Default for RoleCounts
Source§fn default() -> RoleCounts
fn default() -> RoleCounts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RoleCounts
impl<'de> Deserialize<'de> for RoleCounts
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RoleCounts
impl RefUnwindSafe for RoleCounts
impl Send for RoleCounts
impl Sync for RoleCounts
impl Unpin for RoleCounts
impl UnwindSafe for RoleCounts
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