#[repr(C)]pub struct ZSTD_FrameHeader {
pub frameContentSize: c_ulonglong,
pub windowSize: c_ulonglong,
pub blockSizeMax: c_uint,
pub frameType: ZSTD_FrameType_e,
pub headerSize: c_uint,
pub dictID: c_uint,
pub checksumFlag: c_uint,
pub _reserved1: c_uint,
pub _reserved2: c_uint,
}Fields§
§frameContentSize: c_ulonglong§windowSize: c_ulonglong§blockSizeMax: c_uint§frameType: ZSTD_FrameType_e§headerSize: c_uint§dictID: c_uint§checksumFlag: c_uint§_reserved1: c_uint§_reserved2: c_uintTrait Implementations§
Source§impl Default for ZSTD_FrameHeader
impl Default for ZSTD_FrameHeader
Source§fn default() -> ZSTD_FrameHeader
fn default() -> ZSTD_FrameHeader
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ZSTD_FrameHeader
impl RefUnwindSafe for ZSTD_FrameHeader
impl Send for ZSTD_FrameHeader
impl Sync for ZSTD_FrameHeader
impl Unpin for ZSTD_FrameHeader
impl UnsafeUnpin for ZSTD_FrameHeader
impl UnwindSafe for ZSTD_FrameHeader
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