Trait openthread::ot::Udp

source ·
pub trait Udp {
    // Required method
    fn udp_get_sockets(&self) -> UdpSocketIterator<'_> ;
}
Expand description

Methods from the OpenThread “UDP” Module.

Required Methods§

source

fn udp_get_sockets(&self) -> UdpSocketIterator<'_>

Functional equivalent of otsys::otUdpGetSockets.

Implementors§

source§

impl Udp for Instance

source§

impl<T: Udp + Boxable> Udp for Box<T>