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

pub struct Info<'a> { /* fields omitted */ }

Info tag representation.

Methods

impl<'a> Info<'a>[src]

pub fn integer(&mut self) -> Result<Option<&'a [i32]>, InfoReadError>[src]

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

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

pub fn float(&mut self) -> Result<Option<&'a [f32]>, InfoReadError>[src]

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

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

pub fn flag(&mut self) -> Result<bool, InfoReadError>[src]

Get flags from tag. false if not set.

pub fn string(&mut self) -> Result<Option<Vec<&'a [u8]>>, InfoReadError>[src]

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

Trait Implementations

impl<'a> Sync for Info<'a>[src]

impl<'a> Send for Info<'a>[src]

impl<'a> Debug for Info<'a>[src]

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]