pub enum Record {
AlternativeAllele(String, Map<AlternativeAllele>),
Contig(String, Map<Contig>),
FileFormat(FileFormat),
Filter(String, Map<Filter>),
Format(String, Map<Format>),
Info(String, Map<Info>),
Other(Other, Value),
}
Expand description
A VCF header record.
Variants§
AlternativeAllele(String, Map<AlternativeAllele>)
An ALT
record.
Contig(String, Map<Contig>)
A contig
record.
FileFormat(FileFormat)
A fileformat
record.
Filter(String, Map<Filter>)
A FILTER
record.
Format(String, Map<Format>)
A FORMAT
record.
Info(String, Map<Info>)
An INFO
record.
Other(Other, Value)
A nonstadard record.
Trait Implementations§
impl Eq for Record
impl StructuralPartialEq for Record
Auto Trait Implementations§
impl Freeze for Record
impl RefUnwindSafe for Record
impl Send for Record
impl Sync for Record
impl Unpin for Record
impl UnwindSafe for Record
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.