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

Filter

A FILTER header record.

Show fields

Fields of Filter

key: Stringvalues: LinearMap<String, String>
Info

An INFO header record.

Show fields

Fields of Info

key: Stringvalues: LinearMap<String, String>
Format

A FORMAT header record.

Show fields

Fields of Format

key: Stringvalues: LinearMap<String, String>
Contig

A contig header record.

Show fields

Fields of Contig

key: Stringvalues: LinearMap<String, String>
Structured

A structured header record.

Show fields

Fields of Structured

key: Stringvalues: LinearMap<String, String>
Generic

A generic, unstructured header record.

Show fields

Fields of Generic

key: Stringvalue: String

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.