[][src]Struct rust_htslib::htslib::bcf_srs_t

#[repr(C)]pub struct bcf_srs_t {
    pub collapse: i32,
    pub apply_filters: *mut i8,
    pub require_index: i32,
    pub max_unpack: i32,
    pub has_line: *mut i32,
    pub errnum: u32,
    pub readers: *mut bcf_sr_t,
    pub nreaders: i32,
    pub streaming: i32,
    pub explicit_regs: i32,
    pub samples: *mut *mut i8,
    pub regions: *mut _bcf_sr_regions_t,
    pub targets: *mut _bcf_sr_regions_t,
    pub targets_als: i32,
    pub targets_exclude: i32,
    pub tmps: kstring_t,
    pub n_smpl: i32,
    pub n_threads: i32,
    pub p: *mut htsThreadPool,
    pub aux: *mut c_void,
}

Fields

collapse: i32apply_filters: *mut i8require_index: i32max_unpack: i32has_line: *mut i32errnum: u32readers: *mut bcf_sr_tnreaders: i32streaming: i32explicit_regs: i32samples: *mut *mut i8regions: *mut _bcf_sr_regions_ttargets: *mut _bcf_sr_regions_ttargets_als: i32targets_exclude: i32tmps: kstring_tn_smpl: i32n_threads: i32p: *mut htsThreadPoolaux: *mut c_void

Trait Implementations

impl Clone for bcf_srs_t[src]

impl Copy for bcf_srs_t[src]

impl Debug for bcf_srs_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.