Releases: klingtnet/rosc
Releases · klingtnet/rosc
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!
Conversion between OscTime and SystemTime
This release adds conversion functionality between SystemTime
and OscTime
.
This comes with a minor breaking change but OscTime
implements From/Into
traits for (u32, u32)
(the previous type alias) and so you can just use .into()
to convert between (u32, u32)
and OscTime
. More details can be found in the docks docs.
Thanks to @ooesili for providing the implementation!