summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBotahamec <botahamec@outlook.com>2022-10-23 13:25:43 -0400
committerBotahamec <botahamec@outlook.com>2022-10-23 13:25:43 -0400
commitf4b5e2afc59a30687a0630504e233ecb63339783 (patch)
tree8a2066f19ec1615d21c7ed26ed7f061422a072e3 /src/lib.rs
parent42d51b88069a4f534633d90c01d46db59d458652 (diff)
impl From<Raw> for Exun<E, UnexpectedError>
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d078051..38b9067 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -12,10 +12,10 @@ mod result;
#[cfg(feature = "alloc")]
mod unexpected;
-pub use exun::*;
+pub use exun::{Expected, Exun, Unexpected};
#[cfg(feature = "std")]
pub use result::ResultErrorExt;
#[cfg(feature = "alloc")]
pub use result::ResultMsgExt;
#[cfg(feature = "alloc")]
-pub use unexpected::RawUnexpected;
+pub use unexpected::{RawUnexpected, UnexpectedError};