Enum ZstdFrameKind
pub enum ZstdFrameKind {
Standard,
SingleSegment,
Skippable,
Unknown,
}Expand description
Zstd frame shape labels.
Variants§
Standard
Standard zstd frame.
SingleSegment
Single segment zstd frame.
Skippable
Skippable zstd frame.
Unknown
Unknown or intentionally unspecified frame kind.
Implementations§
§impl ZstdFrameKind
impl ZstdFrameKind
Trait Implementations§
§impl Clone for ZstdFrameKind
impl Clone for ZstdFrameKind
§fn clone(&self) -> ZstdFrameKind
fn clone(&self) -> ZstdFrameKind
Returns a duplicate 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 more§impl Debug for ZstdFrameKind
impl Debug for ZstdFrameKind
§impl Default for ZstdFrameKind
impl Default for ZstdFrameKind
§fn default() -> ZstdFrameKind
fn default() -> ZstdFrameKind
Returns the “default value” for a type. Read more
§impl Hash for ZstdFrameKind
impl Hash for ZstdFrameKind
§impl Ord for ZstdFrameKind
impl Ord for ZstdFrameKind
§impl PartialEq for ZstdFrameKind
impl PartialEq for ZstdFrameKind
§impl PartialOrd for ZstdFrameKind
impl PartialOrd for ZstdFrameKind
impl Copy for ZstdFrameKind
impl Eq for ZstdFrameKind
impl StructuralPartialEq for ZstdFrameKind
Auto Trait Implementations§
impl Freeze for ZstdFrameKind
impl RefUnwindSafe for ZstdFrameKind
impl Send for ZstdFrameKind
impl Sync for ZstdFrameKind
impl Unpin for ZstdFrameKind
impl UnsafeUnpin for ZstdFrameKind
impl UnwindSafe for ZstdFrameKind
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