Enum bed_reader::MetadataFields
source · [−]pub enum MetadataFields {
Fid,
Iid,
Father,
Mother,
Sex,
Pheno,
Chromosome,
Sid,
CmPosition,
BpPosition,
Allele1,
Allele2,
}Expand description
All Metadata fields.
Used by Metadata::read_fam and
Metadata::read_bim to skip reading
specified metadata fields.
Variants
Fid
Iid
Father
Mother
Sex
Pheno
Chromosome
Sid
CmPosition
BpPosition
Allele1
Allele2
Trait Implementations
sourceimpl Clone for MetadataFields
impl Clone for MetadataFields
sourcefn clone(&self) -> MetadataFields
fn clone(&self) -> MetadataFields
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for MetadataFields
impl Debug for MetadataFields
sourceimpl Hash for MetadataFields
impl Hash for MetadataFields
sourceimpl Ord for MetadataFields
impl Ord for MetadataFields
sourcefn cmp(&self, other: &MetadataFields) -> Ordering
fn cmp(&self, other: &MetadataFields) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<MetadataFields> for MetadataFields
impl PartialEq<MetadataFields> for MetadataFields
sourcefn eq(&self, other: &MetadataFields) -> bool
fn eq(&self, other: &MetadataFields) -> bool
sourceimpl PartialOrd<MetadataFields> for MetadataFields
impl PartialOrd<MetadataFields> for MetadataFields
sourcefn partial_cmp(&self, other: &MetadataFields) -> Option<Ordering>
fn partial_cmp(&self, other: &MetadataFields) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for MetadataFields
impl Eq for MetadataFields
impl StructuralEq for MetadataFields
impl StructuralPartialEq for MetadataFields
Auto Trait Implementations
impl RefUnwindSafe for MetadataFields
impl Send for MetadataFields
impl Sync for MetadataFields
impl Unpin for MetadataFields
impl UnwindSafe for MetadataFields
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for T
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read morefn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.