pausable-tokio 1.52.1

A fork of tokio that adds a runtime-controllable pause/resume primitive on its clock. Drop-in replacement for tokio with a few extra methods on the Builder and Runtime types.
Documentation
//! Stub implementations for the platform API so that rustdoc can build linkable
//! documentation on non-windows platforms.

use crate::signal::RxFuture;
use std::io;

pub(super) fn ctrl_break() -> io::Result<RxFuture> {
    panic!()
}

pub(super) fn ctrl_close() -> io::Result<RxFuture> {
    panic!()
}

pub(super) fn ctrl_c() -> io::Result<RxFuture> {
    panic!()
}

pub(super) fn ctrl_logoff() -> io::Result<RxFuture> {
    panic!()
}

pub(super) fn ctrl_shutdown() -> io::Result<RxFuture> {
    panic!()
}