Skip to main content

RtResult

Type Alias RtResult 

Source
pub type RtResult<T> = Result<T, PreemptRtError>;
Expand description

PreemptRt result type

Aliased Type§

pub enum RtResult<T> {
    Ok(T),
    Err(PreemptRtError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PreemptRtError)

Contains the error value