Docs.rs
cc-traits-2.0.0
cc-traits 2.0.0
Permalink
Docs.rs crate page
MIT
/
Apache-2.0
Links
Repository
crates.io
Source
Owners
timothee-haudebourg
Dependencies
ijson ^0.1
normal
optional
serde_json ^1.0.71
normal
optional
slab ^0.4
normal
optional
smallvec ^1.6
normal
optional
Versions
89.32%
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
Collection
cc_
traits
2.0.0
Collection
Required Associated Types
Item
Implementations on Foreign Types
BTreeMap<K, V>
BTreeSet<T>
HashMap<K, V>
HashSet<T>
Vec<T>
VecDeque<T>
Implementors
In crate cc_
traits
cc_traits
Trait
Collection
Copy item path
Source
pub trait Collection { type
Item
; }
Expand description
Abstract collection.
Required Associated Types
§
Source
type
Item
Type of the items of the collection.
Implementations on Foreign Types
§
Source
§
impl<K, V>
Collection
for
BTreeMap
<K, V>
Source
§
type
Item
= V
Source
§
impl<K, V>
Collection
for
HashMap
<K, V>
Source
§
type
Item
= V
Source
§
impl<T>
Collection
for
BTreeSet
<T>
Source
§
type
Item
= T
Source
§
impl<T>
Collection
for
VecDeque
<T>
Source
§
type
Item
= T
Source
§
impl<T>
Collection
for
Vec
<T>
Source
§
type
Item
= T
Source
§
impl<T>
Collection
for
HashSet
<T>
Source
§
type
Item
= T
Implementors
§