[][src]Struct koibumi_net::domain::SocketDomain

pub struct SocketDomain { /* fields omitted */ }

A socket address which uses a domain name, i.e. a domain name with a port number.

Implementations

impl SocketDomain[src]

pub fn new(domain: Domain, port: Port) -> Self[src]

Constructs a new socket address from a domain name with a port number.

pub fn domain(&self) -> &Domain[src]

Returns the domain name of this socket address.

pub fn port(&self) -> Port[src]

Returns the port number of this socket address.

Trait Implementations

impl Clone for SocketDomain[src]

impl Debug for SocketDomain[src]

impl Display for SocketDomain[src]

impl Eq for SocketDomain[src]

impl From<SocketDomain> for SocketAddr[src]

impl FromStr for SocketDomain[src]

type Err = ParseSocketDomainError

The associated error which can be returned from parsing.

impl Hash for SocketDomain[src]

impl PartialEq<SocketDomain> for SocketDomain[src]

impl StructuralEq for SocketDomain[src]

impl StructuralPartialEq for SocketDomain[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.