pub trait IntoMultiValue {
type MultiValue: TopEncodeMulti + TopDecodeMulti;
// Required method
fn into_multi_value(self) -> Self::MultiValue;
}
Expand description
Defines conversion of a type to its multi-value representation.
Consumes input.