pub enum DecoderState {
CanConsume,
CanProduce,
Terminated {
corrupted: bool,
unaligned: bool,
},
}
Expand description
Possible states the decoder can be in.
Variants§
CanConsume
The decoder is still able to consume bytes.
CanProduce
The decoder is still able to produce bytes.
Terminated
The decoder has reached the terminal state.
Trait Implementations§
Source§impl Clone for DecoderState
impl Clone for DecoderState
Source§fn clone(&self) -> DecoderState
fn clone(&self) -> DecoderState
Returns a copy 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 DecoderState
impl Debug for DecoderState
Source§impl PartialEq for DecoderState
impl PartialEq for DecoderState
impl Copy for DecoderState
impl Eq for DecoderState
impl StructuralPartialEq for DecoderState
Auto Trait Implementations§
impl Freeze for DecoderState
impl RefUnwindSafe for DecoderState
impl Send for DecoderState
impl Sync for DecoderState
impl Unpin for DecoderState
impl UnwindSafe for DecoderState
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