Trait orml_traits::parameters::AggregratedKeyValue

source ·
pub trait AggregratedKeyValue: Parameter {
    type AggregratedKey: Parameter + MaxEncodedLen;
    type AggregratedValue: Parameter + MaxEncodedLen;

    // Required method
    fn into_parts(
        self
    ) -> (Self::AggregratedKey, Option<Self::AggregratedValue>);
}

Required Associated Types§

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§