async_std/option/
mod.rs

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