pub trait TopDecodeMulti: Sized {
    const IS_SINGLE_VALUE: bool = false;

    fn multi_decode<I>(input: &mut I) -> Result<Self, DecodeError>
    where
        I: TopDecodeMultiInput
, { ... } fn multi_decode_or_handle_err<I, H>(
        input: &mut I,
        h: H
    ) -> Result<Self, H::HandledErr>
    where
        I: TopDecodeMultiInput,
        H: DecodeErrorHandler
, { ... } }

Provided Associated Constants§

Used to optimize single value loading of endpoint arguments.

Provided Methods§

Implementations on Foreign Types§

Implementors§

All single top decode types also work as multi-value decode types.