[][src]Struct rust_htslib::bcf::header::HeaderView

pub struct HeaderView {
    pub inner: *mut bcf_hdr_t,
}

Fields

inner: *mut bcf_hdr_t

Methods

impl HeaderView[src]

pub fn new(inner: *mut bcf_hdr_t) -> Self[src]

pub fn sample_count(&self) -> u32[src]

pub fn samples(&self) -> Vec<&[u8]>[src]

Get vector of sample names defined in the header.

pub fn sample_id(&self, sample: &[u8]) -> Option<usize>[src]

Obtain id (column index) of given sample. Returns None if sample is not present in header.

pub fn rid2name(&self, rid: u32) -> &[u8][src]

pub fn name2rid(&self, name: &[u8]) -> Result<u32, RidError>[src]

pub fn info_type(
    &self,
    tag: &[u8]
) -> Result<(TagType, TagLength), TagTypeError>
[src]

pub fn format_type(
    &self,
    tag: &[u8]
) -> Result<(TagType, TagLength), TagTypeError>
[src]

pub fn name_to_id(&self, id: &[u8]) -> Result<Id, IdError>[src]

Convert string ID (e.g., for a FILTER value) to its numeric identifier.

pub fn id_to_name(&self, id: Id) -> Vec<u8>[src]

Convert integer representing an identifier (e.g., a FILTER value) to its string name.bam.

pub fn sample_to_id(&self, id: &[u8]) -> Result<Id, SampleError>[src]

Convert string sample name to its numeric identifier.

pub fn id_to_sample(&self, id: Id) -> Vec<u8>[src]

Convert integer representing an contig to its name.

pub fn header_records(&self) -> Vec<HeaderRecord>[src]

Return structured HeaderRecords.

Trait Implementations

impl Drop for HeaderView[src]

impl Clone for HeaderView[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for HeaderView[src]

Auto Trait Implementations

impl !Send for HeaderView

impl !Sync for HeaderView

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]