multi_try
This crate allows you to combine multiple Result types and return either a
tuple containing all of their results, or a Vec of any errors which occurred.
It is useful when you want to provide an error message for all errors rather
than simply returning the first error.
Generics are used to support Result<T, E> for any types of T and E. The
Ok types of the combined results are NOT required to be the same, but all of
the Err types must be the same.
The Documentation
Example
use MultiTry;
Check the tests directory for additional examples.
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.