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