#[repr(u32)]pub enum LitLocation {
ZSTD_split = 2,
ZSTD_in_dst = 1,
ZSTD_not_in_dst = 0,
}Variants§
ZSTD_split = 2
Split between litExtraBuffer and dst.
ZSTD_in_dst = 1
Stored entirely within dst (in memory after current output write).
ZSTD_not_in_dst = 0
Stored entirely within litExtraBuffer.
Trait Implementations§
Source§impl Clone for LitLocation
impl Clone for LitLocation
Source§fn clone(&self) -> LitLocation
fn clone(&self) -> LitLocation
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 moreSource§impl Debug for LitLocation
impl Debug for LitLocation
Source§impl PartialEq for LitLocation
impl PartialEq for LitLocation
Source§fn eq(&self, other: &LitLocation) -> bool
fn eq(&self, other: &LitLocation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LitLocation
impl Eq for LitLocation
impl StructuralPartialEq for LitLocation
Auto Trait Implementations§
impl Freeze for LitLocation
impl RefUnwindSafe for LitLocation
impl Send for LitLocation
impl Sync for LitLocation
impl Unpin for LitLocation
impl UnsafeUnpin for LitLocation
impl UnwindSafe for LitLocation
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