#[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_uint
Trait Implementations§
Source§impl Clone for ZSTD_FrameHeader
impl Clone for ZSTD_FrameHeader
Source§fn clone(&self) -> ZSTD_FrameHeader
fn clone(&self) -> ZSTD_FrameHeader
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ZSTD_FrameHeader
impl Debug for ZSTD_FrameHeader
impl Copy for ZSTD_FrameHeader
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 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