[][src]Struct rust_htslib::htslib::bcf_dec_t

#[repr(C)]pub struct bcf_dec_t {
    pub m_fmt: i32,
    pub m_info: i32,
    pub m_id: i32,
    pub m_als: i32,
    pub m_allele: i32,
    pub m_flt: i32,
    pub n_flt: i32,
    pub flt: *mut i32,
    pub id: *mut i8,
    pub als: *mut i8,
    pub allele: *mut *mut i8,
    pub info: *mut bcf_info_t,
    pub fmt: *mut bcf_fmt_t,
    pub var: *mut variant_t,
    pub n_var: i32,
    pub var_type: i32,
    pub shared_dirty: i32,
    pub indiv_dirty: i32,
}

Fields

m_fmt: i32m_info: i32m_id: i32m_als: i32m_allele: i32m_flt: i32n_flt: i32flt: *mut i32id: *mut i8als: *mut i8allele: *mut *mut i8info: *mut bcf_info_tfmt: *mut bcf_fmt_tvar: *mut variant_tn_var: i32var_type: i32shared_dirty: i32indiv_dirty: i32

Trait Implementations

impl Clone for bcf_dec_t[src]

impl Copy for bcf_dec_t[src]

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