pub trait MapOriginalError<O, E> {
// Required method
fn map_original(self) -> Result<O, E>;
}Expand description
Convenience trait that allows mapping from Result<_, ConstructionError<Wrapper>>, Result<_, MutationError<Wrapper> and
Result<_, VerificationError<Wrapper>> to Result<_, Wrapper::Error>.