pub type BootstrapResult<T> = Result<T>;
Result that has BootstrapError as an error variant.
BootstrapError
pub enum BootstrapResult<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value