//!
//! This is just a listing of the functionality available in this crate. See //! the [std documentation](https://doc.rust-lang.org/nightly/std/io/index.html) //! for a full description of the functionality. #![allow(stable_features,unused_features)] #![feature(question_mark,const_fn,collections,alloc,unicode,copy_from_slice,str_char)] #![no_std] #[cfg_attr(feature="collections",macro_use)] #[cfg(feature="collections")] extern crate collections; #[cfg(feature="alloc")] extern crate alloc; extern crate rustc_unicode; #[cfg(not(feature="collections"))] pub type ErrorString = &'static str; // Provide Box::new wrapper #[cfg(not(feature="alloc"))] struct FakeBox