logo
pub trait DecodeValue<'a>: Sized {
    fn decode_value(decoder: &mut Decoder<'a>, header: Header) -> Result<Self>;
}
Expand description

Decode the value part of a Tag-Length-Value encoded field, sans the Tag and Length.

Required methods

Attempt to decode this message using the provided Decoder.

Implementations on Foreign Types

Implementors