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 String for Ipv6Address

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

Derived Implementations

impl Show 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

fn assert_receiver_is_total_eq(&self)

impl Clone for Ipv6Address

fn clone(&self) -> Ipv6Address

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