pub trait DecoderParameterizedValue<'a>: Sized {
    type Parameter;

    fn decode_parameterized(
        parameter: Self::Parameter,
        bytes: DecoderBuffer<'a>
    ) -> DecoderBufferResult<'a, Self>; }
Expand description

A value whose decoding implementation can be altered by a provided parameter.

Required Associated Types

Required Methods

Implementors