Docs.rs
poll-reactive-0.1.0
poll-reactive 0.1.0
Permalink
Docs.rs crate page
MIT
Links
crates.io
Source
Owners
bluenote10
Dependencies
Versions
0%
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
poll_
reactive
0.1.0
Into
Consumer
Required Associated Types
Output
Required Methods
into_consumer
Implementations on Foreign Types
(Dynamic<A>, Dynamic<B>)
(Dynamic<A>, Dynamic<B>, Dynamic<C>)
Implementors
In crate poll_
reactive
poll_reactive
Trait
IntoConsumer
Copy item path
Source
pub trait IntoConsumer { type
Output
; // Required method fn
into_consumer
(&self) -> Self::
Output
; }
Required Associated Types
§
Source
type
Output
Required Methods
§
Source
fn
into_consumer
(&self) -> Self::
Output
Implementations on Foreign Types
§
Source
§
impl<A, B>
IntoConsumer
for (
Dynamic
<A>,
Dynamic
<B>)
where A: CommonBound, B: CommonBound,
Source
§
type
Output
= Consumer2<A, B>
Source
§
fn
into_consumer
(&self) -> Self::
Output
Source
§
impl<A, B, C>
IntoConsumer
for (
Dynamic
<A>,
Dynamic
<B>,
Dynamic
<C>)
where A: CommonBound, B: CommonBound, C: CommonBound,
Source
§
type
Output
= Consumer3<A, B, C>
Source
§
fn
into_consumer
(&self) -> Self::
Output
Implementors
§
Source
§
impl<A>
IntoConsumer
for
Dynamic
<A>
where A: CommonBound,
Source
§
type
Output
=
Consumer
<A>