Enum nginx_config::ast::Address [−][src]
pub enum Address { Ip(SocketAddr), StarPort(u16), Port(u16), Unix(PathBuf), }
Variants
Ip(SocketAddr)
StarPort(u16)
Port(u16)
Unix(PathBuf)
Trait Implementations
impl Debug for Address
[src]
impl Debug for Address
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Clone for Address
[src]
impl Clone for Address
fn clone(&self) -> Address
[src]
fn clone(&self) -> Address
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 PartialEq for Address
[src]
impl PartialEq for Address
fn eq(&self, other: &Address) -> bool
[src]
fn eq(&self, other: &Address) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Address) -> bool
[src]
fn ne(&self, other: &Address) -> bool
This method tests for !=
.
impl Eq for Address
[src]
impl Eq for Address
impl Display for Address
[src]
impl Display for Address