Address
:
[go:
up one dir
,
main page
]
Include Form
Remove Scripts
Accept Cookies
Show Images
Show Referer
Rotate13
Base64
Strip Meta
Strip Title
Session Cookies
Docs.rs
pear-0.1.0
pear 0.1.0
Docs.rs crate page
MIT
/
Apache-2.0
Links
crates.io
Source
Owners
SergioBenitez
Dependencies
pear_codegen ^0.1
normal
Versions
10.53%
of the crate is documented
Go to latest version
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
Required Associated Types
Item
Required Methods
add
new
Implementations on Foreign Types
BTreeMap<K, V>
HashMap<K, V>
Vec<T>
Implementors
In pear::parsers
?
Trait
pear
::
parsers
::
Collection
source
·
[
−
]
pub trait Collection { type
Item
; fn
new
() -> Self;
fn
add
(&mut self, item: Self::
Item
); }
Required Associated Types
§
source
type
Item
Required Methods
§
source
fn
new
() -> Self
source
fn
add
(&mut self, item: Self::
Item
)
Implementations on Foreign Types
§
source
§
impl<T>
Collection
for
Vec
<T>
§
type
Item
= T
source
§
fn
new
() -> Self
source
§
fn
add
(&mut self, item: Self::
Item
)
source
§
impl<K:
Eq
+
Hash
, V>
Collection
for
HashMap
<K, V>
§
type
Item
=
(K, V)
source
§
fn
new
() -> Self
source
§
fn
add
(&mut self, item: Self::
Item
)
source
§
impl<K:
Ord
, V>
Collection
for
BTreeMap
<K, V>
§
type
Item
=
(K, V)
source
§
fn
new
() -> Self
source
§
fn
add
(&mut self, item: Self::
Item
)
Implementors
§