1 2 3 4 5 6 7 8 9 10 11 12
//! Types for values that can reserve a designated null value. #![no_std] #![cfg_attr(docsrs, feature(doc_cfg))] #[cfg(any(feature = "borsh", test))] extern crate alloc; mod maybe_null; mod nullable; pub use self::{maybe_null::*, nullable::*};