diff --git a/embedded-io/src/lib.rs b/embedded-io/src/lib.rs index 4f417f12..9e2e528a 100644 --- a/embedded-io/src/lib.rs +++ b/embedded-io/src/lib.rs @@ -172,7 +172,7 @@ impl From for ErrorKind { /// /// This trait allows generic code to do limited inspecting of errors, /// to react differently to different kinds. -pub trait Error: fmt::Debug + core::error::Error { +pub trait Error: core::error::Error { /// Get the kind of this error. fn kind(&self) -> ErrorKind; }