Struct std::net::SocketAddrV6 [] [src]

pub struct SocketAddrV6 {
    // some fields omitted
}

An IPv6 socket address.

Methods

impl SocketAddrV6

fn new(ip: Ipv6Addr, port: u16, flowinfo: u32, scope_id: u32) -> SocketAddrV6

Creates a new socket address from the ip/port/flowinfo/scope_id components.

fn ip(&self) -> &Ipv6Addr

Returns the IP address associated with this socket address.

fn port(&self) -> u16

Returns the port number associated with this socket address.

fn flowinfo(&self) -> u32

Returns scope ID associated with this address, corresponding to the sin6_flowinfo field in C.

fn scope_id(&self) -> u32

Returns scope ID associated with this address, corresponding to the sin6_scope_id field in C.

Trait Implementations

impl Display for SocketAddrV6

fn fmt(&self, f: &mut Formatter) -> Result

impl Debug for SocketAddrV6

fn fmt(&self, fmt: &mut Formatter) -> Result

impl Clone for SocketAddrV6

fn clone(&self) -> SocketAddrV6

fn clone_from(&mut self, source: &Self)

impl PartialEq for SocketAddrV6

fn eq(&self, other: &SocketAddrV6) -> bool

fn ne(&self, other: &Rhs) -> bool

impl Eq for SocketAddrV6

impl Hash for SocketAddrV6

fn hash<H: Hasher>(&self, s: &mut H)

fn hash_slice<H>(data: &[Self], state: &mut H) where H: Hasher

impl ToSocketAddrs for SocketAddrV6

type Iter = IntoIter<SocketAddr>

fn to_socket_addrs(&self) -> Result<IntoIter<SocketAddr>>

impl FromStr for SocketAddrV6

type Err = AddrParseError

fn from_str(s: &str) -> Result<SocketAddrV6, AddrParseError>

Derived Implementations

impl Copy for SocketAddrV6