pub trait IntoRoute {
// Required method
fn into_route(self) -> Route;
}Expand description
Implementado pelas structs geradas pelas macros #[get], #[post], etc.
Permite passar o nome do handler diretamente para App::route(handler).
pub trait IntoRoute {
// Required method
fn into_route(self) -> Route;
}Implementado pelas structs geradas pelas macros #[get], #[post], etc.
Permite passar o nome do handler diretamente para App::route(handler).