Struct rust_htslib::htslib::BGZF
source · [−]#[repr(C)]pub struct BGZF {Show 16 fields
pub _bitfield_1: __BindgenBitfieldUnit<[u8; 4], u16>,
pub cache_size: i32,
pub block_length: i32,
pub block_clength: i32,
pub block_offset: i32,
pub block_address: i64,
pub uncompressed_address: i64,
pub uncompressed_block: *mut c_void,
pub compressed_block: *mut c_void,
pub cache: *mut bgzf_cache_t,
pub fp: *mut hFILE,
pub mt: *mut bgzf_mtaux_t,
pub idx: *mut __bgzidx_t,
pub idx_build_otf: i32,
pub gz_stream: *mut z_stream_s,
pub seeked: i64,
}Fields
_bitfield_1: __BindgenBitfieldUnit<[u8; 4], u16>cache_size: i32block_length: i32block_clength: i32block_offset: i32block_address: i64uncompressed_address: i64uncompressed_block: *mut c_voidcompressed_block: *mut c_voidcache: *mut bgzf_cache_tfp: *mut hFILEmt: *mut bgzf_mtaux_tidx: *mut __bgzidx_tidx_build_otf: i32gz_stream: *mut z_stream_sseeked: i64Implementations
sourceimpl BGZF
impl BGZF
pub fn errcode(&self) -> u32
pub fn set_errcode(&mut self, val: u32)
pub fn reserved(&self) -> u32
pub fn set_reserved(&mut self, val: u32)
pub fn is_write(&self) -> u32
pub fn set_is_write(&mut self, val: u32)
pub fn no_eof_block(&self) -> u32
pub fn set_no_eof_block(&mut self, val: u32)
pub fn is_be(&self) -> u32
pub fn set_is_be(&mut self, val: u32)
pub fn compress_level(&self) -> i32
pub fn set_compress_level(&mut self, val: i32)
pub fn last_block_eof(&self) -> u32
pub fn set_last_block_eof(&mut self, val: u32)
pub fn is_compressed(&self) -> u32
pub fn set_is_compressed(&mut self, val: u32)
pub fn is_gzip(&self) -> u32
pub fn set_is_gzip(&mut self, val: u32)
pub fn new_bitfield_1(
errcode: u32,
reserved: u32,
is_write: u32,
no_eof_block: u32,
is_be: u32,
compress_level: i32,
last_block_eof: u32,
is_compressed: u32,
is_gzip: u32
) -> __BindgenBitfieldUnit<[u8; 4], u16>
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for BGZF
impl !Send for BGZF
impl !Sync for BGZF
impl Unpin for BGZF
impl UnwindSafe for BGZF
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more