#[repr(C)]pub struct ldmState_t {
pub window: ZSTD_window_t,
pub hashTable: *mut ldmEntry_t,
pub loadedDictEnd: u32,
pub bucketOffsets: *mut u8,
pub splitIndices: [size_t; 64],
pub matchCandidates: [ldmMatchCandidate_t; 64],
}Fields§
§window: ZSTD_window_t§hashTable: *mut ldmEntry_t§loadedDictEnd: u32§bucketOffsets: *mut u8§splitIndices: [size_t; 64]§matchCandidates: [ldmMatchCandidate_t; 64]Trait Implementations§
Source§impl Clone for ldmState_t
impl Clone for ldmState_t
Source§fn clone(&self) -> ldmState_t
fn clone(&self) -> ldmState_t
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ldmState_t
Auto Trait Implementations§
impl !Send for ldmState_t
impl !Sync for ldmState_t
impl Freeze for ldmState_t
impl RefUnwindSafe for ldmState_t
impl Unpin for ldmState_t
impl UnsafeUnpin for ldmState_t
impl UnwindSafe for ldmState_t
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