embassy-net

Crates

git

Versions

default

Flavors

Skip to main content

IpListenEndpoint

Struct IpListenEndpoint 

pub struct IpListenEndpoint {
    pub addr: Option<Address>,
    pub port: u16,
}
Expand description

An internet endpoint address for listening.

In contrast with Endpoint, ListenEndpoint allows leaving the address unspecified, in order to listen on a given port at more than one of our addresses. The address field has three states, which are exactly the three ways a bind can be scoped:

  • None: any address, of either IP version, a dual-stack bind.
  • Some(addr) with an unspecified address (0.0.0.0 / ::): any address of that version, and none of the other one.
  • Some(addr) with a concrete address: that address alone.

An endpoint can be constructed from a port alone, in which case the address is None, and from an (address, port) pair, in which case it is Some. So (Ipv4Address::UNSPECIFIED, 80) is the “any IPv4 address” bind, and (Ipv6Address::UNSPECIFIED, 80) the IPv6 one.

Fields§

§addr: Option<Address>§port: u16

Implementations§

§

impl ListenEndpoint

pub const UNSPECIFIED: ListenEndpoint

The fully wildcard endpoint: any address of any version, port zero.

pub fn concrete_addr(&self) -> Option<Address>

The address, if it is a concrete one, neither absent nor unspecified. That is, one of our addresses rather than a filter over several.

pub fn version(&self) -> Option<Version>

The IP version this endpoint is restricted to, if it is restricted to one.

pub fn is_specified(&self) -> bool

Query whether the endpoint names one concrete address and a nonzero port.

Trait Implementations§

§

impl Clone for ListenEndpoint

§

fn clone(&self) -> ListenEndpoint

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
§

impl Copy for ListenEndpoint

§

impl Debug for ListenEndpoint

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Default for ListenEndpoint

§

fn default() -> ListenEndpoint

Returns the “default value” for a type. Read more
§

impl Display for ListenEndpoint

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Eq for ListenEndpoint

§

impl Format for ListenEndpoint

§

fn format(&self, f: Formatter<'_>)

Writes the defmt representation of self to fmt.
§

impl<T> From<(T, u16)> for ListenEndpoint
where T: Into<Address>,

§

fn from(_: (T, u16)) -> ListenEndpoint

Converts to this type from the input type.
§

impl From<Endpoint> for ListenEndpoint

§

fn from(endpoint: Endpoint) -> ListenEndpoint

Converts to this type from the input type.
§

impl From<SocketAddr> for ListenEndpoint

Available on crate features ipv4 and ipv6 only.
§

fn from(x: SocketAddr) -> ListenEndpoint

Converts to this type from the input type.
§

impl From<u16> for ListenEndpoint

§

fn from(port: u16) -> ListenEndpoint

Converts to this type from the input type.
§

impl Hash for ListenEndpoint

§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

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

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

impl Ord for ListenEndpoint

§

fn cmp(&self, other: &ListenEndpoint) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
§

impl PartialEq for ListenEndpoint

§

fn eq(&self, other: &ListenEndpoint) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
§

impl PartialOrd for ListenEndpoint

§

fn partial_cmp(&self, other: &ListenEndpoint) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
§

impl StructuralPartialEq for ListenEndpoint

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.