Crate driver_net
source ·Expand description
Common traits and types for network device (NIC) drivers.
Re-exports
pub use driver_common::BaseDriverOps;pub use driver_common::DevError;pub use driver_common::DevResult;pub use driver_common::DeviceType;
Modules
- ixgbe NIC device driver.
 
Structs
- The ethernet address of the NIC (MAC address).
 - A RAII network buffer.
 - A pool of
NetBufs to speed up buffer allocation. - A raw buffer struct for network device.
 
Traits
- Operations that require a network device (NIC) driver to implement.
 
Type Aliases
- A RAII network buffer wrapped in a
Box.