Closed IanManske closed 1 year ago
Attention: 3 lines
in your changes are missing coverage. Please review.
:exclamation: Your organization needs to install the Codecov GitHub app to enable full functionality.
Files | Coverage Δ | |
---|---|---|
src/string.rs | 74.10% <0.00%> (-1.01%) |
:arrow_down: |
:loudspeaker: Thoughts on this report? Let us know!.
Thanks, looks like an oversight since all the other impls are in place (also the reverse).
Allows converting from
&String
intoEcoString
for convenience. Otherwise, one has to dostring.as_str().into()
. Since convertingString
toEcoString
already allocates/copies, then adding this impl for&String
shouldn't be any different.