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
embedded_io::ErrorKind only has 18 variants while std::io::ErrorKind has 41. I am porting a zip library to no_std and would like to use more of the variants. Some of these variants would also be useful for filesystems on sdcards.
These are some of the errors I need to use.
NotADirectory,
IsADirectory,
DirectoryNotEmpty,
ReadOnlyFilesystem,
StorageFull,
NotSeekable,
QuotaExceeded,
FileTooLarge,
CrossesDevices,
InvalidFilename,
UnexpectedEof,
I don't see why not implementing all of them though?
The text was updated successfully, but these errors were encountered:
embedded_io::ErrorKind only has 18 variants while std::io::ErrorKind has 41. I am porting a zip library to no_std and would like to use more of the variants. Some of these variants would also be useful for filesystems on sdcards.
These are some of the errors I need to use.
NotADirectory,
IsADirectory,
DirectoryNotEmpty,
ReadOnlyFilesystem,
StorageFull,
NotSeekable,
QuotaExceeded,
FileTooLarge,
CrossesDevices,
InvalidFilename,
UnexpectedEof,
I don't see why not implementing all of them though?
The text was updated successfully, but these errors were encountered: