pub enum PktLineFrame {
Data(Vec<u8>),
Flush,
Delimiter,
ResponseEnd,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PktLineFrame
impl Clone for PktLineFrame
Source§fn clone(&self) -> PktLineFrame
fn clone(&self) -> PktLineFrame
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 moreSource§impl Debug for PktLineFrame
impl Debug for PktLineFrame
impl Eq for PktLineFrame
Source§impl PartialEq for PktLineFrame
impl PartialEq for PktLineFrame
Source§fn eq(&self, other: &PktLineFrame) -> bool
fn eq(&self, other: &PktLineFrame) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PktLineFrame
Auto Trait Implementations§
impl Freeze for PktLineFrame
impl RefUnwindSafe for PktLineFrame
impl Send for PktLineFrame
impl Sync for PktLineFrame
impl Unpin for PktLineFrame
impl UnsafeUnpin for PktLineFrame
impl UnwindSafe for PktLineFrame
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