pub enum ControlFeed {
Response(ControlRpcMessage<ControlResponse>),
NewClient(NewClient),
NewClientOld(NewClientOld),
}Variants§
Trait Implementations§
Source§impl Clone for ControlFeed
impl Clone for ControlFeed
Source§fn clone(&self) -> ControlFeed
fn clone(&self) -> ControlFeed
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 ControlFeed
impl Debug for ControlFeed
impl Eq for ControlFeed
Source§impl MessageEncoding for ControlFeed
impl MessageEncoding for ControlFeed
fn write_to<T: Write>(&self, out: &mut T) -> Result<usize>
fn read_from<T: Read>(read: &mut T) -> Result<Self>
const STATIC_SIZE: Option<usize> = None
const MAX_SIZE: Option<usize> = Self::STATIC_SIZE
const _ASSERT: usize = _
Source§fn static_size() -> Option<usize>
fn static_size() -> Option<usize>
👎Deprecated
Source§impl PartialEq for ControlFeed
impl PartialEq for ControlFeed
Source§fn eq(&self, other: &ControlFeed) -> bool
fn eq(&self, other: &ControlFeed) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ControlFeed
Auto Trait Implementations§
impl Freeze for ControlFeed
impl RefUnwindSafe for ControlFeed
impl Send for ControlFeed
impl Sync for ControlFeed
impl Unpin for ControlFeed
impl UnsafeUnpin for ControlFeed
impl UnwindSafe for ControlFeed
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