Docs.rs
tractor-0.0.6
tractor 0.0.6
Permalink
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
mneumann
Dependencies
async-trait ^0.1
normal
flume ^0.10
normal
tokio ^1.2.0
normal
tractor-macros ^0.0.6
normal
optional
Versions
3.23%
of the crate is documented
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
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
tractor
0.0.6
Channel
Required Methods
send
Implementors
In crate tractor
tractor
Trait
Channel
Copy item path
Source
pub trait Channel<T:
Sized
>:
HasLength
+
Send
{ // Required method fn
send
(&self, msg: T); }
Required Methods
§
Source
fn
send
(&self, msg: T)
Implementors
§
Source
§
impl<FROM, TO, CHAN, MAP>
Channel
<TO> for
MappedChannel
<FROM, TO, CHAN, MAP>
where FROM:
Send
, TO:
Send
, CHAN:
Channel
<FROM>, MAP:
Fn
(TO) -> FROM +
Send
,
Source
§
impl<T:
Send
>
Channel
<T> for
Chan
<T>