Skip to content

Commit b777552

Browse files
committed
IntoInnerError: Provide into_error
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
1 parent 19c7619 commit b777552

File tree

1 file changed

+21
-0
lines changed
  • library/std/src/io/buffered

1 file changed

+21
-0
lines changed

library/std/src/io/buffered/mod.rs

+21
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,27 @@ impl<W> IntoInnerError<W> {
127127
self.0
128128
}
129129

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+
130151
/// Consumes the [`IntoInnerError`] and returns the error which caused the call to
131152
/// [`BufWriter::into_inner()`] to fail, and the underlying writer.
132153
///

0 commit comments

Comments
 (0)