pub trait ArgumentDecoder<'a>: Sized {
    fn decode(de: &mut IDLDeserialize<'a>) -> Result<Self>;
}
Expand description

Allow decoding of any sized argument.

Required Methods

Decodes a value of type Self, modifying the deserializer (values are consumed).

Implementations on Foreign Types

Decode an empty tuple.

Implementors