Skip to main content

StdResult

Type Alias StdResult 

Source
pub type StdResult<T = ()> = Result<T, StdError>;
Expand description

A result returned by an ArceOS standard-library facade operation.

Aliased Type§

pub enum StdResult<T = ()> {
    Ok(T),
    Err(StdError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StdError)

Contains the error value