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>
impl<I, D, S> Debug for DatagramSocketSet<I, D, S>
Source§impl<I, D, S> Default for DatagramSocketSet<I, D, S>
impl<I, D, S> Default for DatagramSocketSet<I, D, S>
Source§fn default() -> DatagramSocketSet<I, D, S>
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>
impl<I, D, S> Deref for DatagramSocketSet<I, D, S>
Source§type Target = HashMap<Strong<ReferenceState<I, D, S>>, Primary<ReferenceState<I, D, S>>>
type Target = HashMap<Strong<ReferenceState<I, D, S>>, Primary<ReferenceState<I, D, S>>>
The resulting type after dereferencing.
Source§impl<I, D, S> DerefMut for DatagramSocketSet<I, D, S>
impl<I, D, S> DerefMut for DatagramSocketSet<I, D, S>
Source§impl<I, D, S, IpType> GenericOverIp<IpType> for DatagramSocketSet<I, D, S>
impl<I, D, S, IpType> GenericOverIp<IpType> for DatagramSocketSet<I, D, S>
Source§type Type = DatagramSocketSet<IpType, D, S>
type Type = DatagramSocketSet<IpType, D, S>
The type of
Self
when its IP-generic parameter is replaced with the
type NewIp
.