pub enum LocalAsyncResponseBody<O> {
Empty,
Fixed(Bytes),
Streaming(BoxLocalAsyncWriteBody<'static, O>),
}Expand description
The response body returned from a local async endpoint.
Variants§
Empty
An empty body.
Fixed(Bytes)
A body buffered in memory.
Streaming(BoxLocalAsyncWriteBody<'static, O>)
A streaming body.