Struct url::Ipv6Address [] [src]

pub struct Ipv6Address {
    pub pieces: [u16; 8],
}

A 128 bit IPv6 address

Fields

pieces

Methods

impl Ipv6Address

fn parse(input: &str) -> ParseResult<Ipv6Address>

Parse an IPv6 address, without the [] square brackets.

fn serialize(&self) -> String

Serialize the IPv6 address to a string.

Trait Implementations

impl Display for Ipv6Address

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

Derived Implementations

impl Ord for Ipv6Address

fn cmp(&self, __arg_0: &Ipv6Address) -> Ordering

impl PartialOrd for Ipv6Address

fn partial_cmp(&self, __arg_0: &Ipv6Address) -> Option<Ordering>

fn lt(&self, __arg_0: &Ipv6Address) -> bool

fn le(&self, __arg_0: &Ipv6Address) -> bool

fn gt(&self, __arg_0: &Ipv6Address) -> bool

fn ge(&self, __arg_0: &Ipv6Address) -> bool

impl Hash for Ipv6Address

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

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

impl Debug for Ipv6Address

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

impl Copy for Ipv6Address

impl PartialEq for Ipv6Address

fn eq(&self, __arg_0: &Ipv6Address) -> bool

fn ne(&self, __arg_0: &Ipv6Address) -> bool

impl Eq for Ipv6Address

impl Clone for Ipv6Address

fn clone(&self) -> Ipv6Address

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