File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -137,6 +137,7 @@ impl From<ErrorKind> for std::io::ErrorKind {
137
137
ErrorKind :: Interrupted => std:: io:: ErrorKind :: Interrupted ,
138
138
ErrorKind :: Unsupported => std:: io:: ErrorKind :: Unsupported ,
139
139
ErrorKind :: OutOfMemory => std:: io:: ErrorKind :: OutOfMemory ,
140
+ ErrorKind :: WriteZero => std:: io:: ErrorKind :: WriteZero ,
140
141
_ => std:: io:: ErrorKind :: Other ,
141
142
}
142
143
}
@@ -163,6 +164,7 @@ impl From<std::io::ErrorKind> for ErrorKind {
163
164
std:: io:: ErrorKind :: Interrupted => ErrorKind :: Interrupted ,
164
165
std:: io:: ErrorKind :: Unsupported => ErrorKind :: Unsupported ,
165
166
std:: io:: ErrorKind :: OutOfMemory => ErrorKind :: OutOfMemory ,
167
+ std:: io:: ErrorKind :: WriteZero => ErrorKind :: WriteZero ,
166
168
_ => ErrorKind :: Other ,
167
169
}
168
170
}
You can’t perform that action at this time.
0 commit comments