diff options
| author | Botahamec <botahamec@outlook.com> | 2022-10-22 22:09:25 -0400 |
|---|---|---|
| committer | Botahamec <botahamec@outlook.com> | 2022-10-22 22:09:25 -0400 |
| commit | d248b850a6ce46a36fcbf9f54178a20553763638 (patch) | |
| tree | d290b7095637f30faff813368be00c81dc2adcc6 | |
| parent | 0790c84b59907ee5fe2dfc5a4d51d593098a281c (diff) | |
Remove non_exhaustive on private type
| -rw-r--r-- | src/unexpected.rs | 1 |
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")] |
