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