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;
}

Required Associated Types§

Required Methods§

source

fn wrap_none(input: I) -> Self::Output

source

fn wrap_fixed(input: I, length: usize) -> Self::Output

source

fn wrap_stream(input: I) -> Self::Output

Implementors§