// Copyright 2016 Mozilla // // Licensed under the Apache License, Version 2.0 (the "License"); you may not use // this file except in compliance with the License. You may obtain a copy of the // License at http://www.apache.org/licenses/LICENSE-2.0 // Unless required by applicable law or agreed to in writing, software distributed // under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR // CONDITIONS OF ANY KIND, either express or implied. See the License for the // specific language governing permissions and limitations under the License. /// Side-effect chaining on `Result`. pub trait ResultEffect { /// Invoke `f` if `self` is `Ok`, returning `self`. fn when_ok(self, f: F) -> Self; /// Invoke `f` if `self` is `Err`, returning `self`. fn when_err(self, f: F) -> Self; } impl ResultEffect for Result { fn when_ok(self, f: F) -> Self { if self.is_ok() { f(); } self } fn when_err(self, f: F) -> Self { if self.is_err() { f(); } self } } /// Side-effect chaining on `Option`. pub trait OptionEffect { /// Invoke `f` if `self` is `None`, returning `self`. fn when_none(self, f: F) -> Self; /// Invoke `f` if `self` is `Some`, returning `self`. fn when_some(self, f: F) -> Self; } impl OptionEffect for Option { fn when_none(self, f: F) -> Self { if self.is_none() { f(); } self } fn when_some(self, f: F) -> Self { if self.is_some() { f(); } self } } #[derive(Clone, Debug, Eq, Hash, Ord, PartialOrd, PartialEq)] pub enum Either { Left(L), Right(R), } // Cribbed from https://github.com/bluss/either/blob/f793721f3fdeb694f009e731b23a2858286bc0d6/src/lib.rs#L219-L259. impl Either { pub fn map_left(self, f: F) -> Either where F: FnOnce(L) -> M, { use self::Either::*; match self { Left(l) => Left(f(l)), Right(r) => Right(r), } } pub fn map_right(self, f: F) -> Either where F: FnOnce(R) -> S, { use self::Either::*; match self { Left(l) => Left(l), Right(r) => Right(f(r)), } } }