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#[doc(inline)]
9pub use std::result::Result;
10
11cfg_unstable! {
12    mod product;
13    mod sum;
14}