Map WSAEDQUOT
to ErrorKind::FilesystemQuotaExceeded
· qinheping/verify-rust-std@fde9f6b (original) (raw)
Navigation Menu
- GitHub Copilot Write better code with AI
- GitHub Models New Manage and compare prompts
- GitHub Advanced Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit fde9f6b
Map WSAEDQUOT
to ErrorKind::FilesystemQuotaExceeded
File tree
1 file changed
lines changed
1 file changed
lines changed
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -139,6 +139,7 @@ pub fn decode_error_kind(errno: i32) -> ErrorKind { | ||
139 | 139 | c::WSAEHOSTUNREACH => HostUnreachable, |
140 | 140 | c::WSAENETDOWN => NetworkDown, |
141 | 141 | c::WSAENETUNREACH => NetworkUnreachable, |
142 | + c::WSAEDQUOT => FilesystemQuotaExceeded, | |
142 | 143 | |
143 | 144 | _ => Uncategorized, |
144 | 145 | } |