radicle_std_ext/lib.rs
1// Copyright © 2019-2020 The Radicle Foundation <hello@radicle.foundation>
2//
3// This file is part of radicle-link, distributed under the GPLv3 with Radicle
4// Linking Exception. For full terms see the included LICENSE file.
5
6#![cfg_attr(feature = "nightly", feature(try_trait_v2))]
7
8pub mod ops;
9pub mod result;
10
11pub type Void = std::convert::Infallible;
12
13pub mod prelude {
14 use super::*;
15
16 pub use super::Void;
17 pub use ops::{FromResidual, Try};
18 pub use result::ResultExt;
19}