Implement error:Error for OscError
OscError
is now implementing the std::error::Error
trait. This increases code ergonomics because it allows OscError
to be used with the ?
operator and with anyhow:Error
.
Thanks to @ooesili for implementing that!