byor 1.0.0

Bring your own runtime!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "exec")]
mod multi_thread;

#[cfg(feature = "local-exec")]
mod local;

impl<T: 'static> crate::executor::Handle<T> for futures::future::RemoteHandle<T> {
    type Wrap<U> = U;

    fn detach(self) {
        self.forget();
    }
}