//! Originally from Intertrait by CodeChain //! //! //! //! //! Licensed under either of //! //! Apache License, Version 2.0 (LICENSE-APACHE or ) //! MIT license (LICENSE-MIT or ) //! //! at your option. pub mod error; mod arc; mod r#box; mod rc; pub use arc::*; pub use r#box::*; pub use rc::*;