KResult

Type Alias KResult 

Source
pub type KResult<O = ()> = Result<O, Kind>;
Expand description

A typedef for the result from a kernel method.

Aliased Type§

pub enum KResult<O = ()> {
    Ok(O),
    Err(Kind),
}

Variants§

§1.0.0

Ok(O)

Contains the success value

§1.0.0

Err(Kind)

Contains the error value