other_error/lib.rs
1#![doc = include_str!("../README.md")]
2
3#![no_std]
4
5#[cfg(feature = "alloc")]
6extern crate alloc;
7
8#[cfg(feature = "alloc")]
9mod arc;
10#[cfg(feature = "alloc")]
11mod rc;
12mod either;
13
14#[cfg(feature = "alloc")]
15pub use arc::ArcError;
16#[cfg(feature = "alloc")]
17pub use rc::RcError;
18pub use either::EitherError;