Skip to main content

InjectableResult

Type Alias InjectableResult 

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

A specialized Result type for injectable operations.

Aliased Type§

pub enum InjectableResult<T> {
    Ok(T),
    Err(InjectableError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(InjectableError)

Contains the error value