pixix4 / ev3dev-lang-rust

Rust language bindings for http://ev3dev.org
MIT License
74 stars 14 forks source link

Ev3Error does not implement Error #18

Closed Eoghanmc22 closed 2 years ago

Eoghanmc22 commented 2 years ago

As of right now, Ev3Error does not implement std's Error trait. This makes error handling more difficult and prevents usage with existing error handling libraries (ie anyhow) as a wrapper type is need.

pixix4 commented 2 years ago

With the current release Ev3Error now implements the std::error::Error trait.