@@ -338,9 +338,9 @@ pub enum ErrorKind {
338
338
/// example, on Unix, a named pipe opened with `File::open`.
339
339
#[ stable( feature = "io_error_a_bit_more" , since = "1.83.0" ) ]
340
340
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 ,
344
344
/// File larger than allowed or supported.
345
345
///
346
346
/// This might arise from a hard limit of the underlying filesystem or file access API, or from
@@ -462,7 +462,7 @@ impl ErrorKind {
462
462
ExecutableFileBusy => "executable file busy" ,
463
463
FileTooLarge => "file too large" ,
464
464
FilesystemLoop => "filesystem loop or indirection limit (e.g. symlink loop)" ,
465
- FilesystemQuotaExceeded => "filesystem quota exceeded" ,
465
+ QuotaExceeded => "quota exceeded" ,
466
466
HostUnreachable => "host unreachable" ,
467
467
Interrupted => "operation interrupted" ,
468
468
InProgress => "in progress" ,
0 commit comments