pub trait ReceiveQueueBindingsContext<DeviceId> {
    // Required method
    fn wake_rx_task(&mut self, device_id: &DeviceId);
}
Expand description

The bindings context for the receive queue.

Required Methods§

source

fn wake_rx_task(&mut self, device_id: &DeviceId)

Signals to bindings that RX frames are available and ready to be handled by device.

Implementations must make sure that the API call to handle queued packets is scheduled to be called as soon as possible so that enqueued RX frames are promptly handled.

Implementors§