1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! Character Device I/O

#![deny(missing_docs)]
#![cfg_attr(can_vector, feature(can_vector))]
#![cfg_attr(write_all_vectored, feature(write_all_vectored))]

#[cfg(feature = "async-std")]
mod async_std;
mod char_device;

#[cfg(feature = "async-std")]
pub use crate::async_std::AsyncCharDevice;
pub use crate::char_device::CharDevice;