Enum noodles_vcf::header::record::Record
source · pub enum Record {
AlternativeAllele(Symbol, Map<AlternativeAllele>),
Contig(Name, Map<Contig>),
FileFormat(FileFormat),
Filter(String, Map<Filter>),
Format(Key, Map<Format>),
Info(Key, Map<Info>),
Other(Other, Value),
}
Expand description
A VCF header record.
Variants§
AlternativeAllele(Symbol, Map<AlternativeAllele>)
An ALT
record.
Contig(Name, Map<Contig>)
A contig
record.
FileFormat(FileFormat)
A fileformat
record.
Filter(String, Map<Filter>)
A FILTER
record.
Format(Key, Map<Format>)
A FORMAT
record.
Info(Key, Map<Info>)
An INFO
record.
Other(Other, Value)
A nonstadard record.
Trait Implementations§
source§impl PartialEq<Record> for Record
impl PartialEq<Record> for Record
impl Eq for Record
impl StructuralEq for Record
impl StructuralPartialEq for Record
Auto Trait Implementations§
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§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 Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.