Type Alias dharitri_wasm::types::VarArgs

source ·
pub type VarArgs<T> = MultiArgVec<T>;
Expand description

Used for taking a variable number of arguments in an endpoint, it is synonymous with MultiResultVec/MultiArgVec.

Aliased Type§

struct VarArgs<T>(pub Vec<T>);

Fields§

§0: Vec<T>