Skip to main content

BpfResult

Type Alias BpfResult 

Source
pub type BpfResult<T> = LinuxResult<T>;
Expand description

Type alias for BPF results and errors.

Aliased Type§

pub enum BpfResult<T> {
    Ok(T),
    Err(LinuxError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(LinuxError)

Contains the error value