pub type Result<T> = Result<T, DependenciesBuilderError>;
Expand description

Result with the DependenciesBuilderError error.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(DependenciesBuilderError)

Contains the error value