pub enum Number {
Count(usize),
AlternateBases,
ReferenceAlternateBases,
Samples,
LocalAlternateBases,
LocalReferenceAlternateBases,
LocalSamples,
Ploidy,
BaseModifications,
Unknown,
}
Expand description
A VCF header format record number value.
Variants§
Count(usize)
An explicit size.
AlternateBases
The number of alternate bases (A
).
ReferenceAlternateBases
The number of reference and alternate bases (R
).
Samples
The number of samples (G
).
LocalAlternateBases
The number of local alternate bases (LA
).
LocalReferenceAlternateBases
The number of local reference and alternate bases (LR
).
LocalSamples
The number of local samples (LG
).
Ploidy
The number of genotype alleles (P
).
BaseModifications
The number of base modifications (M
).
Unknown
The size is unknown.
Trait Implementations§
impl Copy for Number
impl Eq for Number
impl StructuralPartialEq for Number
Auto Trait Implementations§
impl Freeze for Number
impl RefUnwindSafe for Number
impl Send for Number
impl Sync for Number
impl Unpin for Number
impl UnwindSafe for Number
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.