eth-igb 0.1.1

Intel IGB Ethernet driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug, thiserror::Error)]
pub enum DError {
    #[error("Unknown error occurred: {0}")]
    Unknown(&'static str),
    #[error("Operation timed out")]
    Timeout,
    #[error("No memory available")]
    NoMemory,
    #[error("Invalid parameter")]
    InvalidParameter,
}