Enum rustix::net::SocketAddrAny
source · [−]#[non_exhaustive]
pub enum SocketAddrAny {
V4(SocketAddrV4),
V6(SocketAddrV6),
Unix(SocketAddrUnix),
}
Expand description
struct sockaddr_storage
as a Rust enum.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
V4(SocketAddrV4)
struct sockaddr_in
V6(SocketAddrV6)
struct sockaddr_in6
Unix(SocketAddrUnix)
struct sockaddr_un
Implementations
sourceimpl SocketAddrAny
impl SocketAddrAny
sourcepub const fn address_family(&self) -> AddressFamily
pub const fn address_family(&self) -> AddressFamily
Return the address family of this socket address.
Trait Implementations
sourceimpl Clone for SocketAddrAny
impl Clone for SocketAddrAny
sourcefn clone(&self) -> SocketAddrAny
fn clone(&self) -> SocketAddrAny
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SocketAddrAny
impl Debug for SocketAddrAny
sourceimpl Hash for SocketAddrAny
impl Hash for SocketAddrAny
sourceimpl Ord for SocketAddrAny
impl Ord for SocketAddrAny
sourceimpl PartialEq<SocketAddrAny> for SocketAddrAny
impl PartialEq<SocketAddrAny> for SocketAddrAny
sourcefn eq(&self, other: &SocketAddrAny) -> bool
fn eq(&self, other: &SocketAddrAny) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SocketAddrAny) -> bool
fn ne(&self, other: &SocketAddrAny) -> bool
This method tests for !=
.
sourceimpl PartialOrd<SocketAddrAny> for SocketAddrAny
impl PartialOrd<SocketAddrAny> for SocketAddrAny
sourcefn partial_cmp(&self, other: &SocketAddrAny) -> Option<Ordering>
fn partial_cmp(&self, other: &SocketAddrAny) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Eq for SocketAddrAny
impl StructuralEq for SocketAddrAny
impl StructuralPartialEq for SocketAddrAny
Auto Trait Implementations
impl RefUnwindSafe for SocketAddrAny
impl Send for SocketAddrAny
impl Sync for SocketAddrAny
impl Unpin for SocketAddrAny
impl UnwindSafe for SocketAddrAny
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more