Type Alias BootstrapResult

Source
pub type BootstrapResult<T> = Result<T>;
Expand description

Result that has BootstrapError as an error variant.

Aliased Type§

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

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value