pub struct AllLinkages {Show 13 fields
pub linkage_id: Vec<u64>,
pub partition_id: Vec<u64>,
pub linked_object_id: Vec<u64>,
pub num_obs: Vec<i64>,
pub num_obs_outside_partition: Vec<i64>,
pub num_members: Vec<i64>,
pub pure: Vec<bool>,
pub pure_complete: Vec<bool>,
pub contaminated: Vec<bool>,
pub contamination: Vec<f64>,
pub mixed: Vec<bool>,
pub found_pure: Vec<bool>,
pub found_contaminated: Vec<bool>,
}Expand description
Columnar storage for all linkage classifications.
Fields§
§linkage_id: Vec<u64>§partition_id: Vec<u64>§linked_object_id: Vec<u64>NO_OBJECT means no linked object (mixed linkage).
num_obs: Vec<i64>§num_obs_outside_partition: Vec<i64>§num_members: Vec<i64>§pure: Vec<bool>§pure_complete: Vec<bool>§contaminated: Vec<bool>§contamination: Vec<f64>§mixed: Vec<bool>§found_pure: Vec<bool>§found_contaminated: Vec<bool>Implementations§
Trait Implementations§
Source§impl Clone for AllLinkages
impl Clone for AllLinkages
Source§fn clone(&self) -> AllLinkages
fn clone(&self) -> AllLinkages
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 AllLinkages
impl Debug for AllLinkages
Source§impl Default for AllLinkages
impl Default for AllLinkages
Source§fn default() -> AllLinkages
fn default() -> AllLinkages
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AllLinkages
impl RefUnwindSafe for AllLinkages
impl Send for AllLinkages
impl Sync for AllLinkages
impl Unpin for AllLinkages
impl UnsafeUnpin for AllLinkages
impl UnwindSafe for AllLinkages
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