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 caba1f1 commit 194fc49Copy full SHA for 194fc49
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