pub type HttpGatewayResponseBody = Either<ResponseBodyStream, Full<Bytes>>;
pub enum HttpGatewayResponseBody { Left(StreamBody<Pin<Box<dyn Stream<Item = Result<Frame<Bytes>, AgentError>> + Send>>>), Right(Full<Bytes>), }
A value of type L
L
A value of type R
R