Sha256: a6d3b11aa3a7247f7a8365c3241857bcde48d8c390d569e6bc9529c9b1f8ecd1
Contents?: true
Size: 513 Bytes
Versions: 38
Compression:
Stored size: 513 Bytes
Contents
//! 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!() }
Version data entries
38 entries across 38 versions & 1 rubygems