async_std/result/
mod.rs

1//! The Rust core error handling type
2//!
3//! This module provides the `Result<T, E>` type for returning and
4//! propagating errors.
5
6mod from_stream;
7
8#[allow(unused)]
9#[doc(inline)]
10pub use std::result::Result;
11
12cfg_unstable! {
13    mod product;
14    mod sum;
15}