We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
WSAEDQUOT
ErrorKind::FilesystemQuotaExceeded
1 parent 33855f8 commit 8f81597Copy full SHA for 8f81597
library/std/src/sys/pal/windows/mod.rs
@@ -139,6 +139,7 @@ pub fn decode_error_kind(errno: i32) -> ErrorKind {
139
c::WSAEHOSTUNREACH => HostUnreachable,
140
c::WSAENETDOWN => NetworkDown,
141
c::WSAENETUNREACH => NetworkUnreachable,
142
+ c::WSAEDQUOT => FilesystemQuotaExceeded,
143
144
_ => Uncategorized,
145
}
0 commit comments