pub struct PairedFastqStats {
pub pair_count: u64,
pub r1_stats: FastqStats,
pub r2_stats: FastqStats,
}Expand description
Summary statistics for a paired-end FASTQ dataset.
Fields§
§pair_count: u64Number of read pairs.
r1_stats: FastqStatsStatistics for R1 reads.
r2_stats: FastqStatsStatistics for R2 reads.
Trait Implementations§
Source§impl Clone for PairedFastqStats
impl Clone for PairedFastqStats
Source§fn clone(&self) -> PairedFastqStats
fn clone(&self) -> PairedFastqStats
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 PairedFastqStats
impl RefUnwindSafe for PairedFastqStats
impl Send for PairedFastqStats
impl Sync for PairedFastqStats
impl Unpin for PairedFastqStats
impl UnsafeUnpin for PairedFastqStats
impl UnwindSafe for PairedFastqStats
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