standard_lib/collections/traits/
mod.rs

1//! Collection-related traits. Currently this only includes [`SetInterface`](set::SetInterface) and
2//! [`SetIterator`](set::SetIterator) for generalizing various parts of the set functionality. If no
3//! other traits are added, I will (re)move this module.
4
5pub mod set;