1 2 3 4 5 6
use crate::handler::Handler; pub(crate) enum RouteKind<State> { Route(Handler<State>), Redirect(String), }