pub enum NetworkAddressFamily {
ipv4,
ipv6,
unix,
vsock,
unknown,
}
Variants§
Trait Implementations§
Source§impl Clone for NetworkAddressFamily
impl Clone for NetworkAddressFamily
Source§fn clone(&self) -> NetworkAddressFamily
fn clone(&self) -> NetworkAddressFamily
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 NetworkAddressFamily
impl Debug for NetworkAddressFamily
Source§impl<'de> Deserialize<'de> for NetworkAddressFamily
impl<'de> Deserialize<'de> for NetworkAddressFamily
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 Enum for NetworkAddressFamily
impl Enum for NetworkAddressFamily
Source§impl FromStr for NetworkAddressFamily
impl FromStr for NetworkAddressFamily
Source§impl Hash for NetworkAddressFamily
impl Hash for NetworkAddressFamily
Source§impl Ord for NetworkAddressFamily
impl Ord for NetworkAddressFamily
Source§fn cmp(&self, other: &NetworkAddressFamily) -> Ordering
fn cmp(&self, other: &NetworkAddressFamily) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for NetworkAddressFamily
impl PartialEq for NetworkAddressFamily
Source§impl PartialOrd for NetworkAddressFamily
impl PartialOrd for NetworkAddressFamily
Source§impl Serialize for NetworkAddressFamily
impl Serialize for NetworkAddressFamily
impl Copy for NetworkAddressFamily
impl Eq for NetworkAddressFamily
impl StructuralPartialEq for NetworkAddressFamily
Auto Trait Implementations§
impl Freeze for NetworkAddressFamily
impl RefUnwindSafe for NetworkAddressFamily
impl Send for NetworkAddressFamily
impl Sync for NetworkAddressFamily
impl Unpin for NetworkAddressFamily
impl UnwindSafe for NetworkAddressFamily
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