[][src]Struct hts_sys::bcf1_t

#[repr(C)]pub struct bcf1_t {
    pub pos: hts_pos_t,
    pub rlen: hts_pos_t,
    pub rid: i32,
    pub qual: f32,
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 8], u32>,
    pub shared: kstring_t,
    pub indiv: kstring_t,
    pub d: bcf_dec_t,
    pub max_unpack: c_int,
    pub unpacked: c_int,
    pub unpack_size: [c_int; 3],
    pub errcode: c_int,
}

Fields

pos: hts_pos_trlen: hts_pos_trid: i32qual: f32_bitfield_1: __BindgenBitfieldUnit<[u8; 8], u32>shared: kstring_tindiv: kstring_td: bcf_dec_tmax_unpack: c_intunpacked: c_intunpack_size: [c_int; 3]errcode: c_int

Implementations

impl bcf1_t[src]

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

pub fn set_n_info(&mut self, val: u32)[src]

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

pub fn set_n_allele(&mut self, val: u32)[src]

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

pub fn set_n_fmt(&mut self, val: u32)[src]

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

pub fn set_n_sample(&mut self, val: u32)[src]

pub fn new_bitfield_1(
    n_info: u32,
    n_allele: u32,
    n_fmt: u32,
    n_sample: u32
) -> __BindgenBitfieldUnit<[u8; 8], u32>
[src]

Trait Implementations

impl Clone for bcf1_t[src]

impl Copy for bcf1_t[src]

impl Debug for bcf1_t[src]

Auto Trait Implementations

impl RefUnwindSafe for bcf1_t

impl !Send for bcf1_t

impl !Sync for bcf1_t

impl Unpin for bcf1_t

impl UnwindSafe for bcf1_t

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

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.