Sign in
rust
/
rust-by-example
/
refs/heads/macros
/
.
/
examples
/
channels
/
input.md
blob: 7e5186a2479258830012c4a6e03ededf6a9a1542 [
file
] [
log
] [
blame
] [
view
] [
edit
]
Rust
provides asynchronous
`channels`
for
communication between tasks
.
Channels
allow an unidirectional flow of information between two
end
-
points
:
the
`Sender`
and
the
`Receiver`
.
{
channels
.
play
}