pub struct FastaStats {
pub sequence_count: u64,
pub total_bases: u64,
pub gc_content: f64,
pub avg_length: f64,
}Expand description
Summary statistics for a FASTA/FASTQ file.
Fields§
§sequence_count: u64§total_bases: u64§gc_content: f64§avg_length: f64Trait Implementations§
Source§impl Clone for FastaStats
impl Clone for FastaStats
Source§fn clone(&self) -> FastaStats
fn clone(&self) -> FastaStats
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 moreAuto Trait Implementations§
impl Freeze for FastaStats
impl RefUnwindSafe for FastaStats
impl Send for FastaStats
impl Sync for FastaStats
impl Unpin for FastaStats
impl UnsafeUnpin for FastaStats
impl UnwindSafe for FastaStats
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