pub struct PairStats {
pub cell_entries: usize,
pub unique_cell_umi_combos: usize,
pub total_pair_observations: u64,
pub umis_per_cell: Summary,
pub detections_per_cell_umi: Summary,
}Fields§
§cell_entries: usize§unique_cell_umi_combos: usize§total_pair_observations: u64§umis_per_cell: Summary§detections_per_cell_umi: SummaryImplementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PairStats
impl RefUnwindSafe for PairStats
impl Send for PairStats
impl Sync for PairStats
impl Unpin for PairStats
impl UnsafeUnpin for PairStats
impl UnwindSafe for PairStats
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