Type Alias UdpSocketSet

Source
pub type UdpSocketSet<I, D, BT> = DatagramSocketSet<I, D, Udp<BT>>;
Expand description

A set containing all UDP sockets.

Aliased Type§

struct UdpSocketSet<I, D, BT>(/* private fields */);

Trait Implementations

Source§

impl<I, D, S> Debug for DatagramSocketSet<I, D, S>

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<I, D, S> Default for DatagramSocketSet<I, D, S>

Source§

fn default() -> DatagramSocketSet<I, D, S>

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

impl<I, D, S> Deref for DatagramSocketSet<I, D, S>

Source§

type Target = HashMap<Strong<ReferenceState<I, D, S>>, Primary<ReferenceState<I, D, S>>>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &<DatagramSocketSet<I, D, S> as Deref>::Target

Dereferences the value.
Source§

impl<I, D, S> DerefMut for DatagramSocketSet<I, D, S>

Source§

fn deref_mut(&mut self) -> &mut <DatagramSocketSet<I, D, S> as Deref>::Target

Mutably dereferences the value.
Source§

impl<I, D, S, IpType> GenericOverIp<IpType> for DatagramSocketSet<I, D, S>

Source§

type Type = DatagramSocketSet<IpType, D, S>

The type of Self when its IP-generic parameter is replaced with the type NewIp.