]> git.lizzy.rs Git - rust.git/blob - src/libstd/error.rs
rollup merge of #19577: aidancully/master
[rust.git] / src / libstd / error.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Traits for working with Errors.
12 //!
13 //! # The `Error` trait
14 //!
15 //! `Error` is a trait representing the basic expectations for error values,
16 //! i.e. values of type `E` in `Result<T, E>`. At a minimum, errors must provide
17 //! a description, but they may optionally provide additional detail and cause
18 //! chain information:
19 //!
20 //! ```
21 //! trait Error: Send {
22 //!     fn description(&self) -> &str;
23 //!
24 //!     fn detail(&self) -> Option<String> { None }
25 //!     fn cause(&self) -> Option<&Error> { None }
26 //! }
27 //! ```
28 //!
29 //! The `cause` method is generally used when errors cross "abstraction
30 //! boundaries", i.e.  when a one module must report an error that is "caused"
31 //! by an error from a lower-level module. This setup makes it possible for the
32 //! high-level module to provide its own errors that do not commit to any
33 //! particular implementation, but also reveal some of its implementation for
34 //! debugging via `cause` chains.
35 //!
36 //! # The `FromError` trait
37 //!
38 //! `FromError` is a simple trait that expresses conversions between different
39 //! error types. To provide maximum flexibility, it does not require either of
40 //! the types to actually implement the `Error` trait, although this will be the
41 //! common case.
42 //!
43 //! The main use of this trait is in the `try!` macro, which uses it to
44 //! automatically convert a given error to the error specified in a function's
45 //! return type.
46 //!
47 //! For example,
48 //!
49 //! ```
50 //! use std::error::FromError;
51 //! use std::io::{File, IoError};
52 //! use std::os::{MemoryMap, MapError};
53 //! use std::path::Path;
54 //!
55 //! enum MyError {
56 //!     Io(IoError),
57 //!     Map(MapError)
58 //! }
59 //!
60 //! impl FromError<IoError> for MyError {
61 //!     fn from_error(err: IoError) -> MyError {
62 //!         MyError::Io(err)
63 //!     }
64 //! }
65 //!
66 //! impl FromError<MapError> for MyError {
67 //!     fn from_error(err: MapError) -> MyError {
68 //!         MyError::Map(err)
69 //!     }
70 //! }
71 //!
72 //! #[allow(unused_variables)]
73 //! fn open_and_map() -> Result<(), MyError> {
74 //!     let f = try!(File::open(&Path::new("foo.txt")));
75 //!     let m = try!(MemoryMap::new(0, &[]));
76 //!     // do something interesting here...
77 //!     Ok(())
78 //! }
79 //! ```
80
81 use option::Option;
82 use option::Option::None;
83 use kinds::Send;
84 use string::String;
85
86 /// Base functionality for all errors in Rust.
87 pub trait Error: Send {
88     /// A short description of the error; usually a static string.
89     fn description(&self) -> &str;
90
91     /// A detailed description of the error, usually including dynamic information.
92     fn detail(&self) -> Option<String> { None }
93
94     /// The lower-level cause of this error, if any.
95     fn cause(&self) -> Option<&Error> { None }
96 }
97
98 /// A trait for types that can be converted from a given error type `E`.
99 pub trait FromError<E> {
100     /// Perform the conversion.
101     fn from_error(err: E) -> Self;
102 }
103
104 // Any type is convertable from itself
105 impl<E> FromError<E> for E {
106     fn from_error(err: E) -> E {
107         err
108     }
109 }