pub fn encode_view_function_inputs<Info, Resolver, Inputs>(
pallet_name: &str,
function_name: &str,
inputs: Inputs,
info: &Info,
type_resolver: &Resolver,
) -> Result<Vec<u8>, ViewFunctionInputsEncodeError>where
Inputs: IntoEncodableValues,
Info: ViewFunctionTypeInfo,
Info::TypeId: Clone + Debug,
Resolver: TypeResolver<TypeId = Info::TypeId>,Expand description
Encode the Runtime API input data necessary to call a View Function.