Type Alias ContainerResult

Source
pub type ContainerResult<T, B> = Result<T, Error<B>>;

Aliased Type§

pub enum ContainerResult<T, B> {
    Ok(T),
    Err(Error<B>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error<B>)

Contains the error value