mirror of
https://github.com/async-rs/async-std.git
synced 2025-11-02 17:56:38 +00:00
9 lines
202 B
Rust
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;
|