pub enum SocketKind {
Tcp,
Udp,
}Variants§
Trait Implementations§
Source§impl Clone for SocketKind
impl Clone for SocketKind
Source§fn clone(&self) -> SocketKind
fn clone(&self) -> SocketKind
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 SocketKind
impl Debug for SocketKind
Source§impl Deserialize for SocketKind
impl Deserialize for SocketKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SocketKind
impl RefUnwindSafe for SocketKind
impl Send for SocketKind
impl Sync for SocketKind
impl Unpin for SocketKind
impl UnwindSafe for SocketKind
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