Docs.rs
rust---0.1.1
rust-- 0.1.1
Permalink
Docs.rs crate page
Apache-2.0
Links
Repository
crates.io
Source
Owners
ginnyTheCat
Dependencies
Versions
4.35%
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
rust__
0.1.1
adaptor
Required Associated Types
Output
Required Methods
pipe
Implementors
In rust__
::
views
rust__
::
views
Trait
adaptor
Copy item path
Source
pub trait adaptor<I> { type
Output
; // Required method fn
pipe
(self, i: I) -> Self::
Output
; }
Required Associated Types
§
Source
type
Output
Required Methods
§
Source
fn
pipe
(self, i: I) -> Self::
Output
Implementors
§
Source
§
impl<I>
adaptor
<I> for
drop
where I:
Iterator
,
Source
§
type
Output
=
Skip
<I>
Source
§
impl<I>
adaptor
<I> for
enumerate
where I:
Iterator
,
Source
§
type
Output
=
Enumerate
<I>
Source
§
impl<I>
adaptor
<I> for
join
where I:
Iterator
, I::
Item
:
Iterator
,
Source
§
type
Output
=
Flatten
<I>
Source
§
impl<I>
adaptor
<I> for
repeat
where I:
Iterator
+
Clone
,
Source
§
type
Output
=
Flatten
<
Take
<
Repeat
<I>>>
Source
§
impl<I>
adaptor
<I> for
reverse
where I:
DoubleEndedIterator
,
Source
§
type
Output
=
Rev
<I>
Source
§
impl<I>
adaptor
<I> for
take
where I:
Iterator
,
Source
§
type
Output
=
Take
<I>
Source
§
impl<I, F>
adaptor
<I> for
drop_while
<F>
where I:
Iterator
, F:
FnMut
(&I::
Item
) ->
bool
,
Source
§
type
Output
=
SkipWhile
<I, F>
Source
§
impl<I, F>
adaptor
<I> for
filter
<F>
where I:
Iterator
, F:
FnMut
(&I::
Item
) ->
bool
,
Source
§
type
Output
=
Filter
<I, F>
Source
§
impl<I, F>
adaptor
<I> for
take_while
<F>
where I:
Iterator
, F:
FnMut
(&I::
Item
) ->
bool
,
Source
§
type
Output
=
TakeWhile
<I, F>
Source
§
impl<I, F, O>
adaptor
<I> for
transform
<F>
where I:
Iterator
, F:
FnMut
(I::
Item
) -> O,
Source
§
type
Output
=
Map
<I, F>
Source
§
impl<I, J>
adaptor
<I> for
zip
<J>
where I:
Iterator
, J:
IntoIterator
,
Source
§
type
Output
=
Zip
<I, <J as
IntoIterator
>::
IntoIter
>