Trait der::DecodeValue

source ·
pub trait DecodeValue<'a>: Sized {
    fn decode_value<R: Reader<'a>>(
        reader: &mut R,
        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 Reader.

Implementations on Foreign Types§

Implementors§