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

    fn decode_parameterized_mut(
        parameter: Self::Parameter,
        bytes: DecoderBufferMut<'a>
    ) -> DecoderBufferMutResult<'a, Self>; }
Expand description

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

Required Associated Types

Required Methods

Implementors