1 2 3 4 5 6 7 8 9 10 11 12
#![doc = include_str!("../README.md")] #![cfg_attr(not(feature = "std"), no_std)] #[cfg(not(feature = "std"))] pub(crate) use core::fmt; #[cfg(feature = "std")] pub(crate) use std::fmt; pub mod option; pub mod prelude; pub mod result;