@@ -327,9 +327,9 @@ pub enum ErrorKind {
327327 /// example, on Unix, a named pipe opened with `File::open`.
328328 #[ stable( feature = "io_error_a_bit_more" , since = "1.83.0" ) ]
329329 NotSeekable ,
330- /// Filesystem quota was exceeded.
331- #[ unstable ( feature = "io_error_more " , issue = "86442 " ) ]
332- FilesystemQuotaExceeded ,
330+ /// Filesystem quota or some other kind of quota was exceeded.
331+ #[ stable ( feature = "io_error_quota_exceeded " , since = "CURRENT_RUSTC_VERSION " ) ]
332+ QuotaExceeded ,
333333 /// File larger than allowed or supported.
334334 ///
335335 /// This might arise from a hard limit of the underlying filesystem or file access API, or from
@@ -451,7 +451,7 @@ impl ErrorKind {
451451 ExecutableFileBusy => "executable file busy" ,
452452 FileTooLarge => "file too large" ,
453453 FilesystemLoop => "filesystem loop or indirection limit (e.g. symlink loop)" ,
454- FilesystemQuotaExceeded => "filesystem quota exceeded" ,
454+ QuotaExceeded => "quota exceeded" ,
455455 HostUnreachable => "host unreachable" ,
456456 Interrupted => "operation interrupted" ,
457457 InProgress => "in progress" ,
0 commit comments