//! The Rust core optional value type //! //! This module provides the `Option` type for returning and //! propagating optional values. mod from_stream; #[doc(inline)] pub use std::option::Option; cfg_unstable! { mod product; mod sum; }