2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-11-02 17:56:38 +00:00
async-std/src/option/mod.rs
2019-09-30 19:42:30 -04:00

9 lines
202 B
Rust

//! 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;