multi_error 0.1.1

easily failing late on multiple errors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Goals

Works like the ?-Operator but collect multiple errors before returning

```rust
fn get(input: Json) -> Result<Parsed, ErrorList<ErrorType>> {
  
  let (someAttribute, key) = multi_error!( input.get("someAttribute"), input.get("key") )?;
  let parsed = Parsed {
    someAttribute: someAttributeValue,
    key: value,
    input: input,
  };
}
  
```