Type Alias rocket_db_pools::figment::error::Result
source · pub type Result<T> = Result<T, Error>;
Expand description
A simple alias to Result
with an error type of Error
.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}