pub enum BodyFraming {
ContentLength(usize),
Chunked,
Neither,
}Variants§
Implementations§
Source§impl BodyFraming
impl BodyFraming
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 · 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 BodyFraming
impl Debug for BodyFraming
Source§impl PartialEq for BodyFraming
impl PartialEq for BodyFraming
impl Eq for BodyFraming
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 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