Type Alias zstd_sys::ZSTD_outBuffer

source ·
pub type ZSTD_outBuffer = ZSTD_outBuffer_s;

Aliased Type§

struct ZSTD_outBuffer {
    pub dst: *mut c_void,
    pub size: usize,
    pub pos: usize,
}

Fields§

§dst: *mut c_void

< start of output buffer

§size: usize

< size of output buffer

§pos: usize

< position where writing stopped. Will be updated. Necessarily 0 <= pos <= size

Trait Implementations§

source§

impl Clone for ZSTD_outBuffer_s

source§

fn clone(&self) -> ZSTD_outBuffer_s

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 ZSTD_outBuffer_s

source§

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

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

impl Copy for ZSTD_outBuffer_s