Docs.rs
experimental-reactive-0.0.3
experimental-reactive 0.0.3
Docs.rs crate page
MIT
/
Apache-2.0
Links
crates.io
Source
Owners
zakarumych
Dependencies
Versions
24.49%
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
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
experimental_
reactive
0.0.3
Slot
Required Methods
push
Implementors
In experimental_
reactive::
reactive
experimental_reactive
::
reactive
Trait
Slot
Copy item path
Source
pub trait Slot<T> { // Required method fn
push
(&self, _: T) ->
Result
<
()
,
SlotError
<T>>; }
Required Methods
§
Source
fn
push
(&self, _: T) ->
Result
<
()
,
SlotError
<T>>
Implementors
§
Source
§
impl<T>
Slot
<T> for
Buffer
<T>
Source
§
impl<T>
Slot
<T> for
DebugPrinter
where T:
Debug
,
Source
§
impl<T>
Slot
<T> for
Printer
where T:
Display
,
Source
§
impl<T>
Slot
<T> for
EmptySplitter
where T:
Clone
,
Source
§
impl<T, R, X, F>
Slot
<T> for
MappedSlot
<T, R, X, F>
where F:
Fn
(T) -> R, X:
Slot
<R>, T:
Clone
,
Source
§
impl<T, S, P>
Slot
<T> for
Splitter
<T, S, P>
where T:
Clone
, S:
Slot
<T>, P:
Slot
<T>,
Source
§
impl<T, S, U>
Slot
<T> for S
where S:
Deref
<Target = U>, U:
Slot
<T>,