Trait kilt_dip_primitives::traits::GetWithArg
source · pub trait GetWithArg<Arg> {
type Result;
// Required method
fn get(arg: &Arg) -> Self::Result;
}
Expand description
A trait similar in functionality to the [frame_support::traits::Get
], but
with an input argument and an associated return type.