pub enum BodyFraming {
Length(usize),
Chunked,
}Variants§
Trait Implementations§
Source§impl Clone for BodyFraming
impl Clone for BodyFraming
Source§fn clone(&self) -> BodyFraming
fn clone(&self) -> BodyFraming
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for BodyFraming
Source§impl Debug for BodyFraming
impl Debug for BodyFraming
impl Eq for BodyFraming
Source§impl PartialEq for BodyFraming
impl PartialEq for BodyFraming
Source§fn eq(&self, other: &BodyFraming) -> bool
fn eq(&self, other: &BodyFraming) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BodyFraming
Auto Trait Implementations§
impl Freeze for BodyFraming
impl RefUnwindSafe for BodyFraming
impl Send for BodyFraming
impl Sync for BodyFraming
impl Unpin for BodyFraming
impl UnsafeUnpin for BodyFraming
impl UnwindSafe for BodyFraming
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