pub trait IntoRoute {
type IntoRoute: Route;
// Required method
fn into_route(self) -> Self::IntoRoute;
}Required Associated Types§
Required Methods§
fn into_route(self) -> Self::IntoRoute
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
Implementors§
Source§impl IntoRoute for MemoryFile
Available on crate feature fs only.
impl IntoRoute for MemoryFile
Available on crate feature
fs only.Source§impl IntoRoute for StaticFile
Available on crate feature fs only.
impl IntoRoute for StaticFile
Available on crate feature
fs only.Source§impl IntoRoute for StaticFileOwned
Available on crate feature fs only.
impl IntoRoute for StaticFileOwned
Available on crate feature
fs only.Source§impl IntoRoute for StaticFiles
Available on crate feature fs only.
impl IntoRoute for StaticFiles
Available on crate feature
fs only.Source§impl IntoRoute for StaticFilesOwned
Available on crate feature fs only.
impl IntoRoute for StaticFilesOwned
Available on crate feature
fs only.