pub enum RleToken {
Value(u32),
Repeat(u32),
}
Expand description
Decoded token from an entropy decoder in RLE mode.
Variants§
Value(u32)
Emit the given value once.
Repeat(u32)
Repeat previously decoded value by the given number of times.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RleToken
impl RefUnwindSafe for RleToken
impl Send for RleToken
impl Sync for RleToken
impl Unpin for RleToken
impl UnwindSafe for RleToken
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