pub trait HttpInputAlg {
type Path<Input>;
type Query<Input>;
type Body<Input>;
type Header<Input>;
type Auth<Input>;
type Context<Input>;
}Expand description
Describes the HTTP input roles chosen by an interpreter.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".