pub type MultiResultVec<T> = MultiValueVec<T>;
👎Deprecated since 0.29.0: Alias kept for backwards compatibility. Replace with
MultiValueVec
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>