File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -152,6 +152,10 @@ pub enum ErrorKind {
152
152
/// Interrupted operations can typically be retried.
153
153
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
154
154
Interrupted ,
155
+ /// Any I/O error not part of this list.
156
+ #[ stable( feature = "rust1" , since = "1.0.0" ) ]
157
+ Other ,
158
+
155
159
/// An error returned when an operation could not be completed because an
156
160
/// "end of file" was reached prematurely.
157
161
///
@@ -160,9 +164,6 @@ pub enum ErrorKind {
160
164
/// read.
161
165
#[ stable( feature = "read_exact" , since = "1.6.0" ) ]
162
166
UnexpectedEof ,
163
- /// Any I/O error not part of this list.
164
- #[ stable( feature = "rust1" , since = "1.0.0" ) ]
165
- Other ,
166
167
167
168
/// A marker variant that tells the compiler that users of this enum cannot
168
169
/// match it exhaustively.
You can’t perform that action at this time.
0 commit comments