Trait monoio_http::h1::codec::decoder::ItemWrapper
source · pub trait ItemWrapper<I, R> {
type Output;
// Required methods
fn wrap_none(input: I) -> Self::Output;
fn wrap_fixed(input: I, length: usize) -> Self::Output;
fn wrap_stream(input: I) -> Self::Output;
}