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.
usestd::io;/// An interface for killing a running process.
pub(crate)traitKill{/// Forcefully kills the process.
fnkill(&mutself)->io::Result<()>;}impl<T: Kill> Kill for&mutT{fnkill(&mutself)->io::Result<()>{(**self).kill()}}