Type BTreeSetpub

Source
:type(pub) BTreeSet elem (Vec ?610301)
Description

Ordered set of unique elements. Runtime layout shares (Vec elem) but BTreeSet is a distinct type for dispatch — Vec methods like .push do NOT resolve through BTreeSet. Requires (Ord elem elem) in real usage; signature bounds on the trait methods omit the bound so the declared-surface tests need no Ord witness at parse time.