pub trait WasmCompatSendStream: Stream<Item = Result<Bytes, Error>> + Send {
type InnerItem: Send;
}Available on not (WebAssembly and crate feature
wasm).Expand description
Streaming response bound that includes Send on native targets.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".