pub trait ArgumentEncoder {
    fn encode(self, ser: &mut IDLBuilder) -> Result<()>;
}
Expand description

Allow encoding of any serializable value.

Required Methods

Encode a value of type Self.

Implementations on Foreign Types

Decode an empty tuple.

Implementors