#[repr(u32)]pub enum NextInputType {
FrameHeader = 0,
BlockHeader = 1,
Block = 2,
LastBlock = 3,
Checksum = 4,
SkippableFrame = 5,
}Expand description
This enum represents zstd_decompress::ZSTD_nextInputType_e.
Variants§
Trait Implementations§
Source§impl Clone for NextInputType
impl Clone for NextInputType
Source§fn clone(&self) -> NextInputType
fn clone(&self) -> NextInputType
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 NextInputType
impl Debug for NextInputType
Source§impl PartialEq for NextInputType
impl PartialEq for NextInputType
Source§fn eq(&self, other: &NextInputType) -> bool
fn eq(&self, other: &NextInputType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for NextInputType
impl Eq for NextInputType
impl StructuralPartialEq for NextInputType
Auto Trait Implementations§
impl Freeze for NextInputType
impl RefUnwindSafe for NextInputType
impl Send for NextInputType
impl Sync for NextInputType
impl Unpin for NextInputType
impl UnsafeUnpin for NextInputType
impl UnwindSafe for NextInputType
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