Skip to main content

StarryResult

Type Alias StarryResult 

Source
pub type StarryResult<T = ()> = Result<T, StarryError>;
Expand description

A result returned by Starry-owned kernel operations.

Aliased Type§

pub enum StarryResult<T = ()> {
    Ok(T),
    Err(StarryError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StarryError)

Contains the error value