pub type IxgbeResult<T = ()> = Result<T, IxgbeError>;Expand description
Result type for ixgbe driver functions.
A type alias for Result with IxgbeError as the error type.
Aliased Type§
pub enum IxgbeResult<T = ()> {
Ok(T),
Err(IxgbeError),
}