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