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

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

Methods

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

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

Get integers from tag. None if tag not present in record. Import bcf::record::Numeric for missing value handling.

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

Get mutable integers from tag. None if tag not present in record. Import bcf::record::Numeric for missing value handling.

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

Get floats from tag. None if tag not present in record. Import bcf::record::Numeric for missing value handling.

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

Get mutable floats from tag. None if tag not present in record. Import bcf::record::Numeric for missing value handling.

fn flag(&mut self) -> Result<boolInfoReadError>

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

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

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

Get mutable 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]