Enum nix::sys::socket::SockAddr [−][src]
pub enum SockAddr { Inet(InetAddr), Unix(UnixAddr), Netlink(NetlinkAddr), }
Represents a socket address
Variants
Inet(InetAddr)
Unix(UnixAddr)
Netlink(NetlinkAddr)
Methods
impl SockAddr
[src]
impl SockAddr
pub fn new_inet(addr: InetAddr) -> SockAddr
[src]
pub fn new_inet(addr: InetAddr) -> SockAddr
pub fn new_unix<P: ?Sized + NixPath>(path: &P) -> Result<SockAddr>
[src]
pub fn new_unix<P: ?Sized + NixPath>(path: &P) -> Result<SockAddr>
pub fn new_netlink(pid: u32, groups: u32) -> SockAddr
[src]
pub fn new_netlink(pid: u32, groups: u32) -> SockAddr
pub fn family(&self) -> AddressFamily
[src]
pub fn family(&self) -> AddressFamily
pub fn to_str(&self) -> String
[src]
pub fn to_str(&self) -> String
pub unsafe fn as_ffi_pair(&self) -> (&sockaddr, socklen_t)
[src]
pub unsafe fn as_ffi_pair(&self) -> (&sockaddr, socklen_t)
Trait Implementations
impl Copy for SockAddr
[src]
impl Copy for SockAddr
impl PartialEq for SockAddr
[src]
impl PartialEq for SockAddr
fn eq(&self, other: &SockAddr) -> bool
[src]
fn eq(&self, other: &SockAddr) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]This method tests for !=
.
impl Eq for SockAddr
[src]
impl Eq for SockAddr
impl Hash for SockAddr
[src]
impl Hash for SockAddr
fn hash<H: Hasher>(&self, s: &mut H)
[src]
fn hash<H: Hasher>(&self, s: &mut H)
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0
[src]Feeds a slice of this type into the given [Hasher
]. Read more
impl Clone for SockAddr
[src]
impl Clone for SockAddr
fn clone(&self) -> SockAddr
[src]
fn clone(&self) -> SockAddr
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl Display for SockAddr
[src]
impl Display for SockAddr