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§
Trait Implementations§
source§impl Clone for MetadataFields
impl Clone for MetadataFields
source§fn clone(&self) -> MetadataFields
fn clone(&self) -> MetadataFields
Returns a copy 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 MetadataFields
impl Debug for MetadataFields
source§impl Hash for MetadataFields
impl Hash for MetadataFields
source§impl Ord for MetadataFields
impl Ord for MetadataFields
source§fn cmp(&self, other: &MetadataFields) -> Ordering
fn cmp(&self, other: &MetadataFields) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for MetadataFields
impl PartialEq for MetadataFields
source§fn eq(&self, other: &MetadataFields) -> bool
fn eq(&self, other: &MetadataFields) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for MetadataFields
impl PartialOrd for MetadataFields
source§fn partial_cmp(&self, other: &MetadataFields) -> Option<Ordering>
fn partial_cmp(&self, other: &MetadataFields) -> Option<Ordering>
1.0.0 · source§fn 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 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§
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
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§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 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.