Type Alias NerveResult

pub type NerveResult<T> = Result<T, NerveError>;
Expand description

Result type for Nerve Framework operations

Aliased Type§

pub enum NerveResult<T> {
    Ok(T),
    Err(NerveError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(NerveError)

Contains the error value