From 815791091f7ebcd3a460e3157a3660161130da6c Mon Sep 17 00:00:00 2001 From: amyavi <144570677+amyavi@users.noreply.github.com> Date: Wed, 27 Sep 2023 19:30:58 -0300 Subject: [PATCH] impl std Error for Error struct --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index da8a2c2..2af5d7d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -340,3 +340,5 @@ impl Display for Error { } } } + +impl std::error::Error for Error {}