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