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

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

Info tag representation.

Methods

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

pub fn desc(&self) -> String[src]

Short description of info tag.

pub fn integer(&mut self) -> Result<Option<&'a [i32]>>[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]>>[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>[src]

Get flags from tag. false if not set.

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

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

Trait Implementations

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

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

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

Auto Trait Implementations

impl<'a> Unpin for Info<'a>

impl<'a> !UnwindSafe for Info<'a>

impl<'a> !RefUnwindSafe for Info<'a>

Blanket Implementations

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 = !

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.

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

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

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