rs42/lib.rs
1//! rs42 is a collection of utilities to make programming in Rust more enjoyable
2
3mod macros;
4mod result;
5
6/// Trait implementations for pre-existing structs
7pub mod extensions;
8/// Structure that wraps a value and calls a callback function when it exits scope
9pub mod scope_guard;
10
11pub use result::Result;