Expand description
Handler trait for language-agnostic request handling
This module defines the core trait that all language bindings must implement. It’s completely language-agnostic - no Python, Node, or WASM knowledge.
Structs§
- Request
Data - Request data extracted from HTTP request This is the language-agnostic representation passed to handlers
- Static
Response - Pre-built response for routes that always return the same content.
- Static
Response Handler - A no-op handler that declares a static response.
- Validated
Params - Validated parameters from request (path, query, headers, cookies)
Traits§
- Handler
- Handler trait that all language bindings must implement
Type Aliases§
- Handler
Result - Result type for handlers