pub enum CmEventType {
Show 17 variants
AddrResolved,
AddrError,
RouteResolved,
RouteError,
ConnectRequest,
ConnectResponse,
ConnectError,
Unreachable,
Rejected,
Established,
Disconnected,
DeviceRemoval,
MulticastJoin,
MulticastError,
AddrChange,
TimewaitExit,
Unknown(u32),
}Expand description
CM event types.
Variants§
AddrResolved
AddrError
RouteResolved
RouteError
ConnectRequest
ConnectResponse
ConnectError
Unreachable
Rejected
Established
Disconnected
DeviceRemoval
MulticastJoin
MulticastError
AddrChange
TimewaitExit
Unknown(u32)
Trait Implementations§
Source§impl Clone for CmEventType
impl Clone for CmEventType
Source§fn clone(&self) -> CmEventType
fn clone(&self) -> CmEventType
Returns a duplicate 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 CmEventType
impl Debug for CmEventType
Source§impl PartialEq for CmEventType
impl PartialEq for CmEventType
impl Copy for CmEventType
impl Eq for CmEventType
impl StructuralPartialEq for CmEventType
Auto Trait Implementations§
impl Freeze for CmEventType
impl RefUnwindSafe for CmEventType
impl Send for CmEventType
impl Sync for CmEventType
impl Unpin for CmEventType
impl UnsafeUnpin for CmEventType
impl UnwindSafe for CmEventType
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