File tree 1 file changed +21
-0
lines changed
library/std/src/io/buffered
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -127,6 +127,27 @@ impl<W> IntoInnerError<W> {
127
127
self . 0
128
128
}
129
129
130
+ /// Consumes the [`IntoInnerError`] and returns the error which caused the call to
131
+ /// [`BufWriter::into_inner()`] to fail. Unlike `error`, this can be used to
132
+ /// obtain ownership of the underlying error.
133
+ ///
134
+ /// # Example
135
+ /// ```
136
+ /// #![feature(io_into_inner_error_parts)]
137
+ /// use std::io::{BufWriter, ErrorKind, Write};
138
+ ///
139
+ /// let mut not_enough_space = [0u8; 10];
140
+ /// let mut stream = BufWriter::new(not_enough_space.as_mut());
141
+ /// write!(stream, "this cannot be actually written").unwrap();
142
+ /// let into_inner_err = stream.into_inner().expect_err("now we discover it's too small");
143
+ /// let err = into_inner_err.into_error();
144
+ /// assert_eq!(err.kind(), ErrorKind::WriteZero);
145
+ /// ```
146
+ #[ unstable( feature = "io_into_inner_error_parts" , issue = "79704" ) ]
147
+ pub fn into_error ( self ) -> Error {
148
+ self . 1
149
+ }
150
+
130
151
/// Consumes the [`IntoInnerError`] and returns the error which caused the call to
131
152
/// [`BufWriter::into_inner()`] to fail, and the underlying writer.
132
153
///
You can’t perform that action at this time.
0 commit comments