Trait candid::utils::ArgumentDecoder[][src]

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