pub type Result<T = Rocket<Build>, E = Rocket<Build>> = Result<T, E>;
A type alias for the return Result type of Fairing::on_ignite().
Result
Fairing::on_ignite()
enum Result<T = Rocket<Build>, E = Rocket<Build>> { Ok(T), Err(E), }
Contains the success value
Contains the error value