[−][src]Struct rust_htslib::bcf::record::Info
Info tag representation.
Implementations
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
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,