pub enum EncodeStep {
Apply(u8, i16),
Diff(u8, i16),
}Expand description
Constant-time encoder step.
Variants§
Apply(u8, i16)
Apply the given offset to the cumulative result on match.
Diff(u8, i16)
Compute a difference using the given offset on match.
Trait Implementations§
Source§impl Clone for EncodeStep
impl Clone for EncodeStep
Source§fn clone(&self) -> EncodeStep
fn clone(&self) -> EncodeStep
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 EncodeStep
impl Debug for EncodeStep
impl Copy for EncodeStep
Auto Trait Implementations§
impl Freeze for EncodeStep
impl RefUnwindSafe for EncodeStep
impl Send for EncodeStep
impl Sync for EncodeStep
impl Unpin for EncodeStep
impl UnwindSafe for EncodeStep
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