Skip to main content

IxgbeResult

Type Alias IxgbeResult 

Source
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),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(IxgbeError)

Contains the error value