Trait netstack3_device::queue::ReceiveQueueHandler
source · pub trait ReceiveQueueHandler<D: Device, BC>: ReceiveQueueTypes<D, BC> {
// Required method
fn queue_rx_frame(
&mut self,
bindings_ctx: &mut BC,
device_id: &Self::DeviceId,
meta: Self::Meta,
body: Self::Buffer,
) -> Result<(), ReceiveQueueFullError<(Self::Meta, Self::Buffer)>>;
}
Expand description
An implementation of a receive queue, with a buffer.