pub enum CableFrame {
Subscribe {
identifier: String,
},
Unsubscribe {
identifier: String,
},
Message {
identifier: String,
data: Value,
},
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for CableFrame
impl Clone for CableFrame
Source§fn clone(&self) -> CableFrame
fn clone(&self) -> CableFrame
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 CableFrame
impl Debug for CableFrame
Source§impl<'de> Deserialize<'de> for CableFrame
impl<'de> Deserialize<'de> for CableFrame
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CableFrame
impl PartialEq for CableFrame
Source§fn eq(&self, other: &CableFrame) -> bool
fn eq(&self, other: &CableFrame) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CableFrame
impl Serialize for CableFrame
impl StructuralPartialEq for CableFrame
Auto Trait Implementations§
impl Freeze for CableFrame
impl RefUnwindSafe for CableFrame
impl Send for CableFrame
impl Sync for CableFrame
impl Unpin for CableFrame
impl UnsafeUnpin for CableFrame
impl UnwindSafe for CableFrame
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