You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some parts of the library return Result with an LZMAError, which is good, but the parts of the library that implement the Read and Write traits have to return io::Result. They take any LZMAError errors that arise and squish them into an io::Error. This makes handling those errors outside of the library challenging.
Need to find a better solution.
The text was updated successfully, but these errors were encountered:
Some parts of the library return
Result
with anLZMAError
, which is good, but the parts of the library that implement theRead
andWrite
traits have to returnio::Result
. They take anyLZMAError
errors that arise and squish them into anio::Error
. This makes handling those errors outside of the library challenging.Need to find a better solution.
The text was updated successfully, but these errors were encountered: