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#[allow(unused)]
9#[doc(inline)]
10pub use std::option::Option;
11
12cfg_unstable! {
13    mod product;
14    mod sum;
15}