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.

Associated Types

Required methods

Implementors