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,
    },
}

A header record.

Variants

A FILTER header record.

Fields of Filter

An INFO header record.

Fields of Info

A FORMAT header record.

Fields of Format

A contig header record.

Fields of Contig

A structured header record.

Fields of Structured

A generic, unstructured header record.

Fields of Generic

Trait Implementations

impl Debug for HeaderRecord
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for HeaderRecord

impl Sync for HeaderRecord