Sign in
fuchsia
/
fuchsia
/
refs/heads/releases/dogfood
/
.
/
third_party
/
rust_crates
/
vendor
/
async-std
/
src
/
option
/
mod.rs
blob: 76f096b3f219f23fa22f5e569886ea3da189a28c [
file
] [
log
] [
blame
] [
edit
]
//! 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
;
cfg_unstable
!
{
mod
product
;
mod
sum
;
}