Trait netstack3_udp::UdpReceiveBindingsContext

source ·
pub trait UdpReceiveBindingsContext<I: IpExt, D: StrongDeviceIdentifier>: UdpBindingsTypes {
    // Required method
    fn receive_udp<B: BufferMut>(
        &mut self,
        id: &UdpSocketId<I, D::Weak, Self>,
        device_id: &D,
        meta: UdpPacketMeta<I>,
        body: &B,
    );
}
Expand description

The bindings context handling received UDP frames.

Required Methods§

source

fn receive_udp<B: BufferMut>( &mut self, id: &UdpSocketId<I, D::Weak, Self>, device_id: &D, meta: UdpPacketMeta<I>, body: &B, )

Receives a UDP packet on a socket.

Object Safety§

This trait is not object safe.

Implementors§