pub enum ChunkedState {
Size,
SizeLws,
Extension,
SizeLf,
Body,
BodyCr,
BodyLf,
Trailer,
TrailerLf,
EndCr,
EndLf,
End,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ChunkedState
impl Clone for ChunkedState
Source§fn clone(&self) -> ChunkedState
fn clone(&self) -> ChunkedState
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 ChunkedState
impl Debug for ChunkedState
Source§impl PartialEq for ChunkedState
impl PartialEq for ChunkedState
impl Eq for ChunkedState
impl StructuralPartialEq for ChunkedState
Auto Trait Implementations§
impl Freeze for ChunkedState
impl RefUnwindSafe for ChunkedState
impl Send for ChunkedState
impl Sync for ChunkedState
impl Unpin for ChunkedState
impl UnwindSafe for ChunkedState
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