pub enum ConnectorPacketType {
Ping = 0,
TunnelRequest = 1,
Close = 2,
ConnectorConnected = 3,
Invalid = 4,
}Variants§
Implementations§
Trait Implementations§
Source§impl Debug for ConnectorPacketType
impl Debug for ConnectorPacketType
Source§impl PartialEq for ConnectorPacketType
impl PartialEq for ConnectorPacketType
Source§fn eq(&self, other: &ConnectorPacketType) -> bool
fn eq(&self, other: &ConnectorPacketType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ConnectorPacketType
Auto Trait Implementations§
impl Freeze for ConnectorPacketType
impl RefUnwindSafe for ConnectorPacketType
impl Send for ConnectorPacketType
impl Sync for ConnectorPacketType
impl Unpin for ConnectorPacketType
impl UnsafeUnpin for ConnectorPacketType
impl UnwindSafe for ConnectorPacketType
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