almusil / rfm69

A generic rust driver to support RFM69 family wireless chips.
Apache License 2.0
9 stars 9 forks source link

Optionally implement std::error::Error for Error #39

Closed qwandor closed 1 month ago

qwandor commented 1 month ago

This makes error handling easier when std is available, but is guarded behind a new feature std, to avoid pulling in the dependency for users who don't want it.

Also implemented Display, Debug, Clone and Eq.