Struct bitflags::__core::net::SocketAddrV6 [] [src]

pub struct SocketAddrV6 {
    // some fields omitted
}
1.0.0

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 set_ip(&mut self, new_ip: Ipv6Addr)

Unstable (sockaddr_setters)

: recent addition

Change the IP address associated with this socket address.

fn port(&self) -> u16

Returns the port number associated with this socket address.

fn set_port(&mut self, new_port: u16)

Unstable (sockaddr_setters)

: recent addition

Change the port number associated with this socket address.

fn flowinfo(&self) -> u32

Returns the flow information associated with this address, corresponding to the sin6_flowinfo field in C.

fn set_flowinfo(&mut self, new_flowinfo: u32)

Unstable (sockaddr_setters)

: recent addition

Change the flow information associated with this socket address.

fn scope_id(&self) -> u32

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

fn set_scope_id(&mut self, new_scope_id: u32)

Unstable (sockaddr_setters)

: recent addition

Change the scope ID associated with this socket address.

Trait Implementations

impl Display for SocketAddrV6

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

impl Debug for SocketAddrV6

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

impl Clone for SocketAddrV6

fn clone(&self) -> SocketAddrV6

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

impl PartialEq<SocketAddrV6> 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>(&self, s: &mut H) where H: Hasher

1.3.0fn 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>, Error>

impl FromStr for SocketAddrV61.5.0

type Err = AddrParseError

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

Derived Implementations

impl Copy for SocketAddrV6