aboutsummaryrefslogtreecommitdiff
path: root/src/signal/windows/stub.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/signal/windows/stub.rs')
-rw-r--r--src/signal/windows/stub.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/signal/windows/stub.rs b/src/signal/windows/stub.rs
new file mode 100644
index 0000000..8863054
--- /dev/null
+++ b/src/signal/windows/stub.rs
@@ -0,0 +1,13 @@
+//! 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_c() -> io::Result<RxFuture> {
+ panic!()
+}
+
+pub(super) fn ctrl_break() -> io::Result<RxFuture> {
+ panic!()
+}