pub(crate) trait RocketExt {
// Required method
fn mount_routes(self, routes: Vec<(&'static str, Vec<Route>)>) -> Self;
}
Expand description
Extension trait for mounting multiple routes to a Rocket instance
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.