Guess I should put this under version control LOL
This commit is contained in:
commit
2035318460
73 changed files with 8836 additions and 0 deletions
7
lifecycle/src/error.rs
Normal file
7
lifecycle/src/error.rs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
//! Implements an Error type. Currently we just alias this to
|
||||
//! Box<Error>, because I'm not sure how this should really look. Consider
|
||||
//! it an implementation detail hook that could change down the road.
|
||||
|
||||
/// A generic Error type that we use. It currently just aliases to `Box<std::error::Error>`,
|
||||
/// but could change in the future.
|
||||
pub type Error = Box<std::error::Error>;
|
||||
Reference in a new issue