[][src]Struct ethox::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 Copy for Endpoint[src]

impl PartialEq<Endpoint> for Endpoint[src]

impl Default for Endpoint[src]

impl Clone for Endpoint[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Ord for Endpoint[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl From<u16> for Endpoint[src]

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

impl Eq for Endpoint[src]

impl PartialOrd<Endpoint> for Endpoint[src]

impl Display for Endpoint[src]

impl Debug for Endpoint[src]

impl Hash for Endpoint[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for IpEndpoint

impl Sync for IpEndpoint

Blanket Implementations

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> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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