[][src]Struct smoltcp::wire::IpEndpoint

pub struct IpEndpoint {
    pub addr: Address,
    pub port: u16,
}

An internet endpoint address.

An endpoint can be constructed from a port, in which case the address is unspecified.

Fields

addr: Addressport: u16

Methods

impl Endpoint[src]

pub const UNSPECIFIED: Endpoint[src]

An endpoint with unspecified address and port.

pub fn new(addr: Address, port: u16) -> Endpoint[src]

Create an endpoint address from given address and port.

pub fn is_specified(&self) -> bool[src]

Query whether the endpoint has a specified address and port.

Trait Implementations

impl Clone for Endpoint[src]

impl Copy for Endpoint[src]

impl Debug for Endpoint[src]

impl Default for Endpoint[src]

impl Display for Endpoint[src]

impl Eq for Endpoint[src]

impl<T: Into<Address>> From<(T, u16)> for Endpoint[src]

impl From<SocketAddr> for Endpoint[src]

impl From<SocketAddrV4> for Endpoint[src]

impl From<SocketAddrV6> for Endpoint[src]

impl From<u16> for Endpoint[src]

impl FromStr for IpEndpoint[src]

type Err = ()

The associated error which can be returned from parsing.

impl Hash for Endpoint[src]

impl Ord for Endpoint[src]

impl PartialEq<Endpoint> for Endpoint[src]

impl PartialOrd<Endpoint> for Endpoint[src]

impl StructuralEq for Endpoint[src]

impl StructuralPartialEq for Endpoint[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.