pub struct EndOfBody;
Expand description
No more body parts will be received after this
Trait Implementations§
Source§impl From<EndOfBody> for ClientCommand
impl From<EndOfBody> for ClientCommand
Source§impl Writable for EndOfBody
impl Writable for EndOfBody
Source§fn len(&self) -> usize
fn len(&self) -> usize
Byte-length that would be written if
Self::write
is calledSource§fn is_empty(&self) -> bool
fn is_empty(&self) -> bool
Whether a call to
Self::write
would write somethingimpl StructuralPartialEq for EndOfBody
Auto Trait Implementations§
impl Freeze for EndOfBody
impl RefUnwindSafe for EndOfBody
impl Send for EndOfBody
impl Sync for EndOfBody
impl Unpin for EndOfBody
impl UnwindSafe for EndOfBody
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more