mirror of
https://github.com/async-rs/async-std.git
synced 2025-04-26 18:26:48 +00:00
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
15 lines
262 B
Rust
15 lines
262 B
Rust
//! The Rust core error handling type
|
|
//!
|
|
//! This module provides the `Result<T, E>` type for returning and
|
|
//! propagating errors.
|
|
|
|
mod from_stream;
|
|
|
|
#[allow(unused)]
|
|
#[doc(inline)]
|
|
pub use std::result::Result;
|
|
|
|
cfg_unstable! {
|
|
mod product;
|
|
mod sum;
|
|
}
|