Skip to main content

Result

Type Alias Result 

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

Re-export core types for convenience. Result type alias for Aether operations.

Aliased Type§

pub enum Result<T> {
    Ok(T),
    Err(AetherError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AetherError)

Contains the error value