other-error 0.1.0

Small wrapper for sharing or combining errors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

#![no_std]

#[cfg(feature = "alloc")]
extern crate alloc;

#[cfg(feature = "alloc")]
mod arc;
#[cfg(feature = "alloc")]
mod rc;
mod either;

#[cfg(feature = "alloc")]
pub use arc::ArcError;
#[cfg(feature = "alloc")]
pub use rc::RcError;
pub use either::EitherError;