Struct rust_htslib::bcf::record::Info [−][src]
Expand description
Info tag representation.
Implementations
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 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
Auto Trait Implementations
impl<'a, B> !RefUnwindSafe for Info<'a, B>
impl<'a, B> !UnwindSafe for Info<'a, B>