pub struct EndOfHeader;
Expand description
After all headers have been sent, end of header is sent
Trait Implementations§
Source§impl Clone for EndOfHeader
impl Clone for EndOfHeader
Source§fn clone(&self) -> EndOfHeader
fn clone(&self) -> EndOfHeader
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 EndOfHeader
impl Debug for EndOfHeader
Source§impl Default for EndOfHeader
impl Default for EndOfHeader
Source§fn default() -> EndOfHeader
fn default() -> EndOfHeader
Returns the “default value” for a type. Read more
Source§impl From<EndOfHeader> for ClientCommand
impl From<EndOfHeader> for ClientCommand
Source§fn from(value: EndOfHeader) -> Self
fn from(value: EndOfHeader) -> Self
Converts to this type from the input type.
Source§impl From<EndOfHeader> for Command
impl From<EndOfHeader> for Command
Source§fn from(v: EndOfHeader) -> Command
fn from(v: EndOfHeader) -> Command
Converts to this type from the input type.
Source§impl PartialEq for EndOfHeader
impl PartialEq for EndOfHeader
Source§impl TryInto<EndOfHeader> for Command
impl TryInto<EndOfHeader> for Command
Source§impl Writable for EndOfHeader
impl Writable for EndOfHeader
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 EndOfHeader
Auto Trait Implementations§
impl Freeze for EndOfHeader
impl RefUnwindSafe for EndOfHeader
impl Send for EndOfHeader
impl Sync for EndOfHeader
impl Unpin for EndOfHeader
impl UnwindSafe for EndOfHeader
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