stak_device/
lib.rs

1//! Devices to handle I/O.
2
3#![cfg_attr(all(doc, not(doctest)), feature(doc_cfg))]
4#![no_std]
5
6#[cfg(test)]
7extern crate alloc;
8#[cfg(feature = "std")]
9extern crate std;
10
11mod device;
12mod primitive_set;
13
14pub use device::*;
15pub use primitive_set::{DevicePrimitiveSet, Primitive, PrimitiveError};