2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-07-04 03:51:35 +00:00
async-std/src/option/mod.rs
Marc-Antoine Perennou bbde18ffbd fix CI for recent rustc
Allow for unused `pub use` in experimental API which doesn't have its mods public for noiw.
MIPS CI is fully broken (doesn't find the MIPS toolchain) so disable it for now.
Reenable powerpc64 which is no longer broken
2023-11-23 15:01:15 +01:00

15 lines
268 B
Rust

//! The Rust core optional value type
//!
//! This module provides the `Option<T>` type for returning and
//! propagating optional values.
mod from_stream;
#[allow(unused)]
#[doc(inline)]
pub use std::option::Option;
cfg_unstable! {
mod product;
mod sum;
}