pub trait IntoMultiValue {
    type MultiValue: TopEncodeMulti + TopDecodeMulti;

    fn into_multi_value(self) -> Self::MultiValue;
}
Expand description

Defines conversion of a type to its multi-value representation.

Consumes input.

Required Associated Types§

Required Methods§

Implementors§