pub fn encode_runtime_api_inputs_to<Info, Resolver, Inputs>(
trait_name: &str,
method_name: &str,
keys: Inputs,
info: &Info,
type_resolver: &Resolver,
out: &mut Vec<u8>,
) -> Result<(), RuntimeApiInputsEncodeError>where
Inputs: IntoEncodableValues,
Info: RuntimeApiTypeInfo,
Info::TypeId: Clone + Debug,
Resolver: TypeResolver<TypeId = Info::TypeId>,Expand description
Encode the inputs to a Runtime API to a provided output Vec.