Enum rust_htslib::bcf::header::HeaderRecord [−][src]
pub enum HeaderRecord {
Filter {
key: String,
values: LinearMap<String, String>,
},
Info {
key: String,
values: LinearMap<String, String>,
},
Format {
key: String,
values: LinearMap<String, String>,
},
Contig {
key: String,
values: LinearMap<String, String>,
},
Structured {
key: String,
values: LinearMap<String, String>,
},
Generic {
key: String,
value: String,
},
}Expand description
A header record.
Variants
A FILTER header record.
An INFO header record.
A FORMAT header record.
A contig header record.
A structured header record.
A generic, unstructured header record.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for HeaderRecordimpl Send for HeaderRecordimpl Sync for HeaderRecordimpl Unpin for HeaderRecordimpl UnwindSafe for HeaderRecord