pub struct SampleRunReport {
pub sample_index: usize,
pub process: String,
pub data: bool,
pub signal: bool,
pub normalization_factor: f64,
pub events_read: usize,
pub selected: usize,
}Expand description
Summary for one processed sample row.
Fields§
§sample_index: usize§process: String§data: bool§signal: bool§normalization_factor: f64§events_read: usize§selected: usizeTrait Implementations§
Source§impl Clone for SampleRunReport
impl Clone for SampleRunReport
Source§fn clone(&self) -> SampleRunReport
fn clone(&self) -> SampleRunReport
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 SampleRunReport
impl Debug for SampleRunReport
Source§impl PartialEq for SampleRunReport
impl PartialEq for SampleRunReport
impl StructuralPartialEq for SampleRunReport
Auto Trait Implementations§
impl Freeze for SampleRunReport
impl RefUnwindSafe for SampleRunReport
impl Send for SampleRunReport
impl Sync for SampleRunReport
impl Unpin for SampleRunReport
impl UnsafeUnpin for SampleRunReport
impl UnwindSafe for SampleRunReport
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