Type Definition schemars::Set

source · []
pub type Set<T> = BTreeSet<T>;
Expand description

The set type used by schemars types.

Currently a BTreeSet, but this may change to a different implementation with a similar interface in a future version of schemars.