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
#![allow(clippy::return_self_not_must_use)]
use std::{future::Future, pin::Pin};
mod arbiter;
mod builder;
mod system;
pub use self::arbiter::Arbiter;
pub use self::builder::{Builder, SystemRunner};
pub use self::system::System;
#[cfg(feature = "tokio")]
mod tokio;
#[cfg(feature = "tokio")]
pub use self::tokio::*;
#[cfg(feature = "async-std")]
mod asyncstd;
#[cfg(all(not(feature = "tokio"), feature = "async-std"))]
pub use self::asyncstd::*;
pub trait Runtime {
fn spawn(&self, future: Pin<Box<dyn Future<Output = ()>>>);
fn block_on(&self, f: Pin<Box<dyn Future<Output = ()>>>);
}
#[derive(PartialEq, Clone, Copy, Debug)]
pub enum Signal {
Hup,
Int,
Term,
Quit,
}
#[cfg(all(not(feature = "tokio"), not(feature = "async-std")))]
pub fn create_runtime() -> Box<dyn Runtime> {
unimplemented!()
}
#[cfg(all(not(feature = "tokio"), not(feature = "async-std")))]
pub fn spawn<F>(_: F) -> std::pin::Pin<Box<dyn std::future::Future<Output = F::Output>>>
where
F: std::future::Future + 'static,
{
unimplemented!()
}