@@ -338,9 +338,9 @@ pub enum ErrorKind {
338338 /// example, on Unix, a named pipe opened with `File::open`.
339339 #[ stable( feature = "io_error_a_bit_more" , since = "1.83.0" ) ]
340340 NotSeekable ,
341- /// Filesystem quota was exceeded.
342- #[ unstable ( feature = "io_error_more " , issue = "86442 " ) ]
343- FilesystemQuotaExceeded ,
341+ /// Filesystem quota or some other kind of quota was exceeded.
342+ #[ stable ( feature = "io_error_quota_exceeded " , since = "CURRENT_RUSTC_VERSION " ) ]
343+ QuotaExceeded ,
344344 /// File larger than allowed or supported.
345345 ///
346346 /// This might arise from a hard limit of the underlying filesystem or file access API, or from
@@ -462,7 +462,7 @@ impl ErrorKind {
462462 ExecutableFileBusy => "executable file busy" ,
463463 FileTooLarge => "file too large" ,
464464 FilesystemLoop => "filesystem loop or indirection limit (e.g. symlink loop)" ,
465- FilesystemQuotaExceeded => "filesystem quota exceeded" ,
465+ QuotaExceeded => "quota exceeded" ,
466466 HostUnreachable => "host unreachable" ,
467467 Interrupted => "operation interrupted" ,
468468 InProgress => "in progress" ,
0 commit comments