Results for “Std.Http.Server.Route.Route”
22 matching declarations
Use module:Std.List, kind:fn, or is:exact. Put a Pudu type after ::.
- Std.Http.Server.Route.Route
One route: a method, a pattern, and what answers it.
- Std.App.Access.routing
&Array[Std.App.Access.Guarded] -> fn(Std.Http.Server.Route.Request) -> Std.App.Access.Principal -> Std.Http.Server.Route.RouterA router over routes that all stated what they require.
- Std.App.over
Str -> &Std.App.Config.Config -> &Std.Http.Server.Route.Router -> Std.App.AppAn application over settings the caller already has, for a program whose
- Std.App.routerOf
&Std.App.App -> Std.Http.Server.Route.RouterWhat the application serves.
- Std.App.serve
Str -> &Std.Http.Server.Route.Router -> Result[Int, Std.App.AppError]A name and a router, and a service is running.
- Std.App.serving
&Std.App.App -> &Std.Http.Server.Route.Router -> Std.App.AppAn application with different routes.
- Std.App.web
Str -> &Std.Http.Server.Route.Router -> Result[Std.App.App, Std.App.AppError]The same application, built and not run.
- Std.Http.Server.Route.adding
&Std.Http.Server.Route.Router -> Std.Http.Server.Route.Route -> Std.Http.Server.Route.RouterA router with one more route after the ones it has.
- Std.Http.Server.Route.delete
Str -> fn(Std.Http.Server.Route.Request) -> Std.Http.Response -> Std.Http.Server.Route.RouteA route answering DELETE on a path.
- Std.Http.Server.Route.dispatch
&Std.Http.Server.Route.Router -> Std.Http.Server.Route.Request -> Std.Http.ResponseSend a request through a router.
- Std.Http.Server.Route.get
Str -> fn(Std.Http.Server.Route.Request) -> Std.Http.Response -> Std.Http.Server.Route.RouteA route answering GET on a path.
- Std.Http.Server.Route.joining
&Std.Http.Server.Route.Router -> &Std.Http.Server.Route.Router -> Std.Http.Server.Route.RouterTwo routers joined, the first tried before the second.
- Std.Http.Server.Route.on
Std.Http.Method -> Str -> fn(Std.Http.Server.Route.Request) -> Std.Http.Response -> Std.Http.Server.Route.RouteOne route, as a value.
- Std.Http.Server.Route.patch
Str -> fn(Std.Http.Server.Route.Request) -> Std.Http.Response -> Std.Http.Server.Route.RouteA route answering PATCH on a path.
- Std.Http.Server.Route.post
Str -> fn(Std.Http.Server.Route.Request) -> Std.Http.Response -> Std.Http.Server.Route.RouteA route answering POST on a path.
- Std.Http.Server.Route.put
Str -> fn(Std.Http.Server.Route.Request) -> Std.Http.Response -> Std.Http.Server.Route.RouteA route answering PUT on a path.
- Std.Http.Server.Route.query
Str -> fn(Std.Http.Server.Route.Request) -> Std.Http.Response -> Std.Http.Server.Route.RouteA route for a request carrying its terms in its own body.
- Std.Http.Server.Route.router
Std.Http.Server.Route.RouterA router with nothing in it, answering everything as not found.
- Std.Http.Server.Route.routing
&Array[Std.Http.Server.Route.Route] -> Std.Http.Server.Route.RouterA router over a list of routes.
- Std.Http.Server.Route.under
Str -> &Array[Std.Http.Server.Route.Route] -> Array[Std.Http.Server.Route.Route]Every route with a prefix in front of its pattern.
- Std.Http.Server.Route.withFallback
&Std.Http.Server.Route.Router -> fn(Std.Http.Server.Route.Request) -> Std.Http.Response -> Std.Http.Server.Route.RouterA router answering unmatched requests with something of its own.
- Std.Http.Server.server
&Std.Http.Server.Route.Router -> Std.Http.Server.ServerA server over a router, with no middleware and the default limits.
