pub trait InboundHttpExt {
// Required method
fn http(self) -> HttpInboundBuilder;
}Expand description
Extension trait adding .http() to the core InboundStage.
Required Methods§
Sourcefn http(self) -> HttpInboundBuilder
fn http(self) -> HttpInboundBuilder
Begin building an HTTP inbound adapter (server) from the core adapter DSL.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".