Struct rust_htslib::bcf::record::Info[][src]

pub struct Info<'a, B: BorrowMut<Buffer> + Borrow<Buffer>> { /* fields omitted */ }
Expand description

Info tag representation.

Implementations

Short description of info tag.

Get integers from tag. None if tag not present in record.

Import bcf::record::Numeric for missing value handling.

Attention: the returned BufferBacked which holds the data has to be kept in scope as along as the data is accessed. If parts of the data are accessed while the BufferBacked object is already dropped, you will access unallocated memory.

Get floats from tag. None if tag not present in record.

Import bcf::record::Numeric for missing value handling.

Attention: the returned BufferBacked which holds the data has to be kept in scope as along as the data is accessed. If parts of the data are accessed while the BufferBacked object is already dropped, you will access unallocated memory.

Get flags from tag. false if not set.

Get strings from tag. None if tag not present in record.

Attention: the returned BufferBacked which holds the data has to be kept in scope as along as the data is accessed. If parts of the data are accessed while the BufferBacked object is already dropped, you will access unallocated memory.

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.