[][src]Struct hts_sys::hts_itr_t

#[repr(C)]pub struct hts_itr_t {
    pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>,
    pub tid: c_int,
    pub n_off: c_int,
    pub i: c_int,
    pub n_reg: c_int,
    pub beg: hts_pos_t,
    pub end: hts_pos_t,
    pub reg_list: *mut hts_reglist_t,
    pub curr_tid: c_int,
    pub curr_reg: c_int,
    pub curr_intv: c_int,
    pub curr_beg: hts_pos_t,
    pub curr_end: hts_pos_t,
    pub curr_off: u64,
    pub nocoor_off: u64,
    pub off: *mut hts_pair64_max_t,
    pub readrec: hts_readrec_func,
    pub seek: hts_seek_func,
    pub tell: hts_tell_func,
    pub bins: hts_itr_t__bindgen_ty_1,
}

Fields

_bitfield_1: __BindgenBitfieldUnit<[u8; 4], u32>tid: c_intn_off: c_inti: c_intn_reg: c_intbeg: hts_pos_tend: hts_pos_treg_list: *mut hts_reglist_tcurr_tid: c_intcurr_reg: c_intcurr_intv: c_intcurr_beg: hts_pos_tcurr_end: hts_pos_tcurr_off: u64nocoor_off: u64off: *mut hts_pair64_max_treadrec: hts_readrec_funcseek: hts_seek_functell: hts_tell_funcbins: hts_itr_t__bindgen_ty_1

Methods

impl hts_itr_t[src]

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

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

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

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

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

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

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

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

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

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

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

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

pub fn new_bitfield_1(
    read_rest: u32,
    finished: u32,
    is_cram: u32,
    nocoor: u32,
    multi: u32,
    dummy: u32
) -> __BindgenBitfieldUnit<[u8; 4], u32>
[src]

Trait Implementations

impl Clone for hts_itr_t[src]

impl Copy for hts_itr_t[src]

impl Debug for hts_itr_t[src]

Auto Trait Implementations

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.