pub enum PeerEventType {
Add,
Drop,
MsgSend,
MsgRecv,
}
Expand description
The type of a peer event.
Variants§
Add
A peer was added to the server.
Drop
A peer was dropped from the server.
MsgSend
A message was successfully sent to the peer.
MsgRecv
A message was successfully received by the peer.
Trait Implementations§
Source§impl Clone for PeerEventType
impl Clone for PeerEventType
Source§fn clone(&self) -> PeerEventType
fn clone(&self) -> PeerEventType
Returns a copy of the value. Read more
1.0.0 · 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 PeerEventType
impl Debug for PeerEventType
Source§impl<'de> Deserialize<'de> for PeerEventType
impl<'de> Deserialize<'de> for PeerEventType
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 PeerEventType
impl PartialEq for PeerEventType
Source§impl Serialize for PeerEventType
impl Serialize for PeerEventType
impl Eq for PeerEventType
impl StructuralPartialEq for PeerEventType
Auto Trait Implementations§
impl Freeze for PeerEventType
impl RefUnwindSafe for PeerEventType
impl Send for PeerEventType
impl Sync for PeerEventType
impl Unpin for PeerEventType
impl UnwindSafe for PeerEventType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)