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.
Aliased Type§
struct Set<T> { /* private fields */ }