summaryrefslogtreecommitdiffstats
path: root/src/failable/ops/and.rs
AgeCommit message (Collapse)Author
2022-08-09cargo-fix for editionMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2022-08-09Format codeMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2020-04-24Fix: Remove deprecated try!() macro usageMatthias Beyer
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2018-04-29Make error type associatedMatthias Beyer
The problem with the FailingFilter was, that the error type was not an associated type but a generic type parameter. This patch fixes this.
2017-10-05Fix typoMatthias Beyer
2017-10-03Lessen restriction for Result second type paramMatthias Beyer
Before we had the restriction that the Err(_) part of the Result must be an Error, but as Result itself does not have such a bound, we remove ours as well.
2017-10-01Add failable filter infrastructureMatthias Beyer