Docs.rs
data_structure_traits-0.1.12
data_structure_traits 0.1.12
Permalink
Docs.rs crate page
MIT
/
Apache-2.0
Links
Homepage
Repository
crates.io
Source
Owners
nathanfaucett
Dependencies
hashmap_core ^0.1
normal
optional
Versions
1.23%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
data_
structure_
traits
0.1.12
Collection
Mut
Required Methods
clear
Implementations on Foreign Types
BTreeMap<K, V>
BTreeSet<V>
BinaryHeap<V>
HashMap<K, V, S>
HashSet<V, S>
LinkedList<T>
String
Vec<T>
VecDeque<T>
Implementors
In crate data_
structure_
traits
data_structure_traits
Trait
CollectionMut
Copy item path
Source
pub trait CollectionMut:
Collection
{ // Required method fn
clear
(&mut self); }
Required Methods
§
Source
fn
clear
(&mut self)
Implementations on Foreign Types
§
Source
§
impl
CollectionMut
for
String
Source
§
fn
clear
(&mut self)
Source
§
impl<K, V>
CollectionMut
for
BTreeMap
<K, V>
where K:
Eq
+
Ord
,
Source
§
fn
clear
(&mut self)
Source
§
impl<K, V, S>
CollectionMut
for
HashMap
<K, V, S>
where K:
Eq
+
Hash
, S:
BuildHasher
,
Source
§
fn
clear
(&mut self)
Source
§
impl<T>
CollectionMut
for
LinkedList
<T>
Source
§
fn
clear
(&mut self)
Source
§
impl<T>
CollectionMut
for
VecDeque
<T>
Source
§
fn
clear
(&mut self)
Source
§
impl<T>
CollectionMut
for
Vec
<T>
Source
§
fn
clear
(&mut self)
Source
§
impl<V>
CollectionMut
for
BinaryHeap
<V>
where V:
Ord
,
Source
§
fn
clear
(&mut self)
Source
§
impl<V>
CollectionMut
for
BTreeSet
<V>
where V:
Eq
+
Ord
,
Source
§
fn
clear
(&mut self)
Source
§
impl<V, S>
CollectionMut
for
HashSet
<V, S>
where V:
Eq
+
Hash
, S:
BuildHasher
,
Source
§
fn
clear
(&mut self)
Implementors
§