Struct hts_sys::hts_itr_t

source ·
#[repr(C)]
pub struct hts_itr_t {
Show 20 fields 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_int§n_off: c_int§i: c_int§n_reg: c_int§beg: hts_pos_t§end: hts_pos_t§reg_list: *mut hts_reglist_t§curr_tid: c_int§curr_reg: c_int§curr_intv: c_int§curr_beg: hts_pos_t§curr_end: hts_pos_t§curr_off: u64§nocoor_off: u64§off: *mut hts_pair64_max_t§readrec: hts_readrec_func§seek: hts_seek_func§tell: hts_tell_func§bins: hts_itr_t__bindgen_ty_1

Implementations§

source§

impl hts_itr_t

source

pub fn read_rest(&self) -> u32

source

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

source

pub fn finished(&self) -> u32

source

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

source

pub fn is_cram(&self) -> u32

source

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

source

pub fn nocoor(&self) -> u32

source

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

source

pub fn multi(&self) -> u32

source

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

source

pub fn dummy(&self) -> u32

source

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

source

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

Trait Implementations§

source§

impl Clone for hts_itr_t

source§

fn clone(&self) -> hts_itr_t

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for hts_itr_t

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for hts_itr_t

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.