[][src]Enum rust_htslib::bcf::header::HeaderRecord

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

Filter

A FILTER header record.

Fields of Filter

key: Stringvalues: LinearMap<String, String>
Info

An INFO header record.

Fields of Info

key: Stringvalues: LinearMap<String, String>
Format

A FORMAT header record.

Fields of Format

key: Stringvalues: LinearMap<String, String>
Contig

A contig header record.

Fields of Contig

key: Stringvalues: LinearMap<String, String>
Structured

A structured header record.

Fields of Structured

key: Stringvalues: LinearMap<String, String>
Generic

A generic, unstructured header record.

Fields of Generic

key: Stringvalue: String

Trait Implementations

impl Debug for HeaderRecord[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]