1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//! Fallback syntax for `async`/`await` when `libcore-drone` crate is not
//! available.
//!
//! The following snippet is written with native `async`/`await` syntax:
//!
//! ```
//! # #![feature(never_type)]
//! use drone_core::sync::spsc::oneshot;
//!
//! async fn plus_one(rx: oneshot::Receiver<usize>) -> Result<usize, oneshot::Canceled> {
//! let number = rx.await?;
//! Ok(number + 1)
//! }
//! ```
//!
//! Using this module that snippet can be rewritten as follow:
//!
//! ```
//! # #![feature(generators)]
//! # #![feature(never_type)]
//! use drone_core::{future::fallback::*, sync::spsc::oneshot};
//! use futures::prelude::*;
//!
//! fn plus_one(
//! rx: oneshot::Receiver<usize>,
//! ) -> impl Future<Output = Result<usize, oneshot::Canceled>> {
//! asyn(|| {
//! let number = awt!(rx)?;
//! Ok(number + 1)
//! })
//! }
//! ```
/// `asyn(|| { expr })` is an alternative for `async { expr }`.
pub use from_generator as asyn;
/// A macro to await a future on an async call.
///
/// `awt!(expr)` is an alternative for `expr.await`.
pub use crateawt;