@@ -327,9 +327,9 @@ pub enum ErrorKind {
327
327
/// example, on Unix, a named pipe opened with `File::open`.
328
328
#[ stable( feature = "io_error_a_bit_more" , since = "CURRENT_RUSTC_VERSION" ) ]
329
329
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 ,
333
333
/// File larger than allowed or supported.
334
334
///
335
335
/// This might arise from a hard limit of the underlying filesystem or file access API, or from
@@ -446,7 +446,7 @@ impl ErrorKind {
446
446
ExecutableFileBusy => "executable file busy" ,
447
447
FileTooLarge => "file too large" ,
448
448
FilesystemLoop => "filesystem loop or indirection limit (e.g. symlink loop)" ,
449
- FilesystemQuotaExceeded => "filesystem quota exceeded" ,
449
+ QuotaExceeded => "quota exceeded" ,
450
450
HostUnreachable => "host unreachable" ,
451
451
Interrupted => "operation interrupted" ,
452
452
InvalidData => "invalid data" ,
0 commit comments