Type Alias AtomResult

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

A specialized result type for manifest operations.

Aliased Type§

pub enum AtomResult<T> {
    Ok(T),
    Err(AtomError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(AtomError)

Contains the error value