Closed afonso360 closed 2 years ago
Merging #35 (273cc54) into master (dcadb6c) will decrease coverage by
0.90%
. The diff coverage is0.00%
.
@@ Coverage Diff @@
## master #35 +/- ##
==========================================
- Coverage 85.65% 84.75% -0.91%
==========================================
Files 12 12
Lines 941 951 +10
==========================================
Hits 806 806
- Misses 135 145 +10
Impacted Files | Coverage Ξ | |
---|---|---|
src/parse.rs | 71.92% <0.00%> (-15.31%) |
:arrow_down: |
Continue to review full report at Codecov.
Legend - Click here to learn more
Ξ = absolute <relative> (impact)
,ΓΈ = not affected
,? = missing data
Powered by Codecov. Last update dcadb6c...273cc54. Read the comment docs.
Thank you for PR.
Hey! π
I'm trying to use this crate and have the errors propagated up. It looks like
Error
is not implemented forNmeaError
, so here is a PR to fix that.We implement Display unconditionally for
NmeaError
, andstd::error::Error
when working in astd
environment.To distinguish between
no_std
andstd
we add an optional but enabled by defaultstd
feature. As far as I can tell, rust doesn't yet have a proper way to do this...