[−][src]Enum nix::sys::socket::SockAddr
Represents a socket address
Variants
Inet(InetAddr)
Unix(UnixAddr)
Link(LinkAddr)
Datalink address (MAC)
Implementations
impl SockAddr
[src]
pub fn new_inet(addr: InetAddr) -> SockAddr
[src]
pub fn new_unix<P: ?Sized + NixPath>(path: &P) -> Result<SockAddr>
[src]
pub fn family(&self) -> AddressFamily
[src]
pub fn to_str(&self) -> String
[src]
pub unsafe fn from_libc_sockaddr(addr: *const sockaddr) -> Option<SockAddr>
[src]
Creates a SockAddr
struct from libc's sockaddr.
Supports only the following address families: Unix, Inet (v4 & v6), Netlink and System. Returns None for unsupported families.
pub unsafe fn as_ffi_pair(&self) -> (&sockaddr, socklen_t)
[src]
Conversion from nix's SockAddr type to the underlying libc sockaddr type.
This is useful for interfacing with other libc functions that don't yet have nix wrappers. Returns a reference to the underlying data type (as a sockaddr reference) along with the size of the actual data type. sockaddr is commonly used as a proxy for a superclass as C doesn't support inheritance, so many functions that take a sockaddr * need to take the size of the underlying type as well and then internally cast it back.
Trait Implementations
impl Clone for SockAddr
[src]
impl Copy for SockAddr
[src]
impl Debug for SockAddr
[src]
impl Display for SockAddr
[src]
impl Eq for SockAddr
[src]
impl Hash for SockAddr
[src]
fn hash<H: Hasher>(&self, s: &mut H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl PartialEq<SockAddr> for SockAddr
[src]
Auto Trait Implementations
impl RefUnwindSafe for SockAddr
impl Send for SockAddr
impl Sync for SockAddr
impl Unpin for SockAddr
impl UnwindSafe for SockAddr
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,