pub type MultiResultVec<T> = VarArgs<T>;
Expand description

Used for returning a variable number of results from an endpoint, it is synonymous with MultiResult.

Aliased Type§

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

Fields§

§0: Vec<T>