multiple_errors 1.1.1

Propagate multiple errors instead of just the first one
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]

#[doc(hidden)]
pub mod testing_prelude;

mod collect;
pub use collect::CollectVecResult;

mod fail_all;
pub use fail_all::{fail_all, fail_all_vec};

// Implicitly does `#[macro_export]` of `return_multiple_errors!`
mod return_multiple_errors;