Open ilitteri opened 1 month ago
Replace as conversions with .into() where possible and use .try_into() and handle the Result if not.
as
.into()
.try_into()
Result
can i take on this ?
Replace
as
conversions with.into()
where possible and use.try_into()
and handle theResult
if not.