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