wireshift-core 0.1.1

Core typed operations, buffers, and backend traits for wireshift
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Completion drain strategies.

mod batch;
mod blocking;
mod callback;
mod fifo;
mod waker;

pub use batch::BatchDrain;
pub use blocking::BlockingDrain;
pub use callback::CallbackDrain;
pub use fifo::FifoDrain;
pub use waker::WakerDrain;