stak_device/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Devices to handle I/O.

#![cfg_attr(all(doc, not(doctest)), feature(doc_auto_cfg))]
#![no_std]

#[cfg(test)]
extern crate alloc;
#[cfg(feature = "std")]
extern crate std;

mod device;
mod primitive_set;

pub use device::*;
pub use primitive_set::{DevicePrimitiveSet, Primitive, PrimitiveError};