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 more
sourceimpl Debug for MetadataFields
impl Debug for MetadataFields
sourceimpl Hash for MetadataFields
impl Hash for MetadataFields
sourceimpl Ord for MetadataFields
impl Ord for MetadataFields
sourceimpl PartialEq<MetadataFields> for MetadataFields
impl PartialEq<MetadataFields> for MetadataFields
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>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
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 more
impl 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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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 SP where
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SP where
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 more
fn 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.