dpdk-stdlib 0.2.0

Safe Rust wrappers for DPDK EAL, Port, Mbuf, Mempool, and RX/TX queues
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod eal;
pub mod port;
pub mod queue;
pub mod mbuf;
pub mod error;

pub use eal::Eal;
pub use port::Port;
pub use error::{DpdkError, DpdkResult};
pub use mbuf::{Mbuf, Mempool, MbufBuilder};
pub use queue::{RxQueue, TxQueue, QueuePair, RxQueueConfig, TxQueueConfig, QueueStats};