pub type RespStream = Pin<Box<dyn Stream<Item = Result<Bytes, ClientError>> + Send>>;Expand description
Streaming response body. Native streams are Send; wasm streams stay local
because Fetch ReadableStream handles are JS-bound.
Aliased Typeยง
pub struct RespStream { /* private fields */ }