Trait rust_sc2::units::Container [−][src]
Joins collections functionality to check if given item is present in it. Used in generics of some units methods.
Joins collections functionality to check if given item is present in it. Used in generics of some units methods.
impl<T: PartialEq> Container<T> for &[T]
[src]impl<T: PartialEq> Container<T> for Vec<T>
[src]impl<T: Eq + Hash, S: BuildHasher> Container<T> for HashSet<T, S>
[src]impl<T: Eq + Hash, V, S: BuildHasher> Container<T> for HashMap<T, V, S>
[src]impl<T: Ord> Container<T> for BTreeSet<T>
[src]impl<T: Ord, V> Container<T> for BTreeMap<T, V>
[src]impl<T: Eq + Hash> Container<T> for IndexSet<T>
[src]impl<T: Eq + Hash, V> Container<T> for IndexMap<T, V>
[src]