Trait fire_http::into::IntoRoute

source ·
pub trait IntoRoute {
    type IntoRoute: Route;

    // Required method
    fn into_route(self) -> Self::IntoRoute;
}

Required Associated Types§

Required Methods§

source

fn into_route(self) -> Self::IntoRoute

Implementors§

source§

impl IntoRoute for MemoryFile

Available on crate feature fs only.
§

type IntoRoute = MemoryFileRoute

source§

impl IntoRoute for StaticFile

Available on crate feature fs only.
§

type IntoRoute = StaticFileRoute

source§

impl IntoRoute for StaticFileOwned

Available on crate feature fs only.
§

type IntoRoute = StaticFileRoute

source§

impl IntoRoute for StaticFiles

Available on crate feature fs only.
§

type IntoRoute = StaticFilesRoute

source§

impl IntoRoute for StaticFilesOwned

Available on crate feature fs only.
§

type IntoRoute = StaticFilesRoute

source§

impl<R> IntoRoute for Rwhere R: Route,

§

type IntoRoute = R