[][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> Any for T where
    T: 'static + ?Sized
[src]

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

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

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.