#[repr(C)]pub struct ZSTD_Trace {
pub version: c_uint,
pub streaming: c_int,
pub dictionaryID: c_uint,
pub dictionaryIsCold: c_int,
pub dictionarySize: size_t,
pub uncompressedSize: size_t,
pub compressedSize: size_t,
pub params: *const ZSTD_CCtx_params_s,
pub cctx: *const ZSTD_CCtx_s,
pub dctx: *const ZSTD_DCtx_s,
}Fields§
§version: c_uint§streaming: c_int§dictionaryID: c_uint§dictionaryIsCold: c_int§dictionarySize: size_t§uncompressedSize: size_t§compressedSize: size_t§params: *const ZSTD_CCtx_params_s§cctx: *const ZSTD_CCtx_s§dctx: *const ZSTD_DCtx_sAuto Trait Implementations§
impl !RefUnwindSafe for ZSTD_Trace
impl !Send for ZSTD_Trace
impl !Sync for ZSTD_Trace
impl !UnwindSafe for ZSTD_Trace
impl Freeze for ZSTD_Trace
impl Unpin for ZSTD_Trace
impl UnsafeUnpin for ZSTD_Trace
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more