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.

Associated Types

Required methods

Implementors