pub enum LevelerMode {
Compress,
Limit,
Reserved(u8),
}
Expand description
The mode of leveler.
Variants§
Trait Implementations§
Source§impl Clone for LevelerMode
impl Clone for LevelerMode
Source§fn clone(&self) -> LevelerMode
fn clone(&self) -> LevelerMode
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 LevelerMode
impl Debug for LevelerMode
Source§impl Default for LevelerMode
impl Default for LevelerMode
Source§impl From<LevelerMode> for u8
impl From<LevelerMode> for u8
Source§fn from(mode: LevelerMode) -> Self
fn from(mode: LevelerMode) -> Self
Converts to this type from the input type.
Source§impl From<u8> for LevelerMode
impl From<u8> for LevelerMode
Source§impl PartialEq for LevelerMode
impl PartialEq for LevelerMode
impl Copy for LevelerMode
impl Eq for LevelerMode
impl StructuralPartialEq for LevelerMode
Auto Trait Implementations§
impl Freeze for LevelerMode
impl RefUnwindSafe for LevelerMode
impl Send for LevelerMode
impl Sync for LevelerMode
impl Unpin for LevelerMode
impl UnwindSafe for LevelerMode
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