Enum noodles_vcf::header::record::Record
source · pub enum Record {
AlternativeAllele(Symbol, Map<AlternativeAllele>),
Assembly(String),
Contig(Name, Map<Contig>),
FileFormat(FileFormat),
Filter(String, Map<Filter>),
Format(Key, Map<Format>),
Info(Key, Map<Info>),
Meta(String, Map<Meta>),
PedigreeDb(String),
Other(Other, Other),
}
Expand description
A VCF header record.
Variants§
AlternativeAllele(Symbol, Map<AlternativeAllele>)
An ALT
record.
Assembly(String)
An assembly
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.
Meta(String, Map<Meta>)
A META
record.
PedigreeDb(String)
A pedigreeDB
record.
Other(Other, Other)
A nonstadard record.
Trait Implementations§
source§impl PartialEq<Record> for Record
impl PartialEq<Record> for Record
source§impl TryFrom<(FileFormat, &str)> for Record
impl TryFrom<(FileFormat, &str)> for Record
§type Error = ParseError
type Error = ParseError
The type returned in the event of a conversion error.
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<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,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.