1 2 3 4 5 6 7 8 9
//! The Rust core optional value type //! //! This module provides the `Option<T>` type for returning and //! propagating optional values. mod from_stream; #[doc(inline)] pub use std::option::Option;
1 2 3 4 5 6 7 8 9
//! The Rust core optional value type //! //! This module provides the `Option<T>` type for returning and //! propagating optional values. mod from_stream; #[doc(inline)] pub use std::option::Option;