pub enum DecoderState {
ReadingSize,
ReadingData,
ExpectingCR,
ExpectingLF,
Done,
}Expand description
State of the chunked decoder.
Variants§
ReadingSize
Waiting for chunk size line.
ReadingData
Reading chunk data.
ExpectingCR
Expecting \r after chunk data.
ExpectingLF
Expecting \n after chunk data.
Done
Finished reading all chunks.
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