@@ -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 = "CURRENT_RUSTC_VERSION" ) ]
329329 NotSeekable ,
330- /// Filesystem quota was exceeded.
331- #[ unstable ( feature = "io_error_more " , issue = "86442 " ) ]
332- FilesystemQuotaExceeded ,
330+ /// Filesystem quota or some other king 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
@@ -446,7 +446,7 @@ impl ErrorKind {
446446 ExecutableFileBusy => "executable file busy" ,
447447 FileTooLarge => "file too large" ,
448448 FilesystemLoop => "filesystem loop or indirection limit (e.g. symlink loop)" ,
449- FilesystemQuotaExceeded => "filesystem quota exceeded" ,
449+ QuotaExceeded => "quota exceeded" ,
450450 HostUnreachable => "host unreachable" ,
451451 Interrupted => "operation interrupted" ,
452452 InvalidData => "invalid data" ,
0 commit comments