pub enum FastBlockType {
Raw,
Rle,
Compress,
}Expand description
Predicted block type from fast analysis.
Variants§
Raw
Data appears incompressible - use raw block
Rle
Data has uniform bytes - use RLE block
Compress
Data may be compressible - attempt normal compression
Trait Implementations§
Source§impl Clone for FastBlockType
impl Clone for FastBlockType
Source§fn clone(&self) -> FastBlockType
fn clone(&self) -> FastBlockType
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 moreSource§impl Debug for FastBlockType
impl Debug for FastBlockType
Source§impl PartialEq for FastBlockType
impl PartialEq for FastBlockType
impl Copy for FastBlockType
impl Eq for FastBlockType
impl StructuralPartialEq for FastBlockType
Auto Trait Implementations§
impl Freeze for FastBlockType
impl RefUnwindSafe for FastBlockType
impl Send for FastBlockType
impl Sync for FastBlockType
impl Unpin for FastBlockType
impl UnwindSafe for FastBlockType
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