pub trait IntoRouteResult<T> {
// Required method
fn into_route_result(self) -> Result<T>;
}Available on crate feature
json only.Required Methods§
fn into_route_result(self) -> Result<T>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".