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§
Sourcefn receive_udp<B: BufferMut>(
&mut self,
id: &UdpSocketId<I, D::Weak, Self>,
device_id: &D,
meta: UdpPacketMeta<I>,
body: &B,
)
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.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.