klingtnet / rosc

An OSC library for Rust.
Apache License 2.0
173 stars 25 forks source link

Return Result instead of IResult #33

Closed DrLuke closed 2 years ago

DrLuke commented 2 years ago

Previously the decoder methods returned an IResult. That required importing nom::Err into your project and dealing with the nom error, which was unnecessary.

Closes #30

klingtnet commented 2 years ago

Great work again, thank you very much for your contribution @DrLuke !