pub struct TotalSummary {
pub bases_covered: u64,
pub min_value: f64,
pub max_value: f64,
pub sum_data: f64,
pub sum_squared: f64,
}Expand description
The summary block is optional: a file that carries none sets its offset to 0, and the reader leaves this as it stands rather than parsing 40 bytes of whatever happens to sit at the start of the file. Hence NaN extremes.
Fields§
§bases_covered: u64§min_value: f64§max_value: f64§sum_data: f64§sum_squared: f64Trait Implementations§
Source§impl Clone for TotalSummary
impl Clone for TotalSummary
Source§fn clone(&self) -> TotalSummary
fn clone(&self) -> TotalSummary
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 TotalSummary
Source§impl Debug for TotalSummary
impl Debug for TotalSummary
Auto Trait Implementations§
impl Freeze for TotalSummary
impl RefUnwindSafe for TotalSummary
impl Send for TotalSummary
impl Sync for TotalSummary
impl Unpin for TotalSummary
impl UnsafeUnpin for TotalSummary
impl UnwindSafe for TotalSummary
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more