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