summaryrefslogtreecommitdiff
path: root/src/unexpected.rs
diff options
context:
space:
mode:
authorBotahamec <botahamec@outlook.com>2022-10-22 22:09:25 -0400
committerBotahamec <botahamec@outlook.com>2022-10-22 22:09:25 -0400
commitd248b850a6ce46a36fcbf9f54178a20553763638 (patch)
treed290b7095637f30faff813368be00c81dc2adcc6 /src/unexpected.rs
parent0790c84b59907ee5fe2dfc5a4d51d593098a281c (diff)
Remove non_exhaustive on private type
Diffstat (limited to 'src/unexpected.rs')
-rw-r--r--src/unexpected.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/unexpected.rs b/src/unexpected.rs
index 496c6c9..0338ce4 100644
--- a/src/unexpected.rs
+++ b/src/unexpected.rs
@@ -10,7 +10,6 @@ pub trait Errorable: Display + Debug + Send + Sync {}
impl<T: Display + Debug + Send + Sync + ?Sized> Errorable for T {}
#[derive(Debug)]
-#[non_exhaustive]
enum ErrorTy {
Message(Box<dyn Errorable + 'static>),
#[cfg(feature = "std")]