1 2 3 4 5 6 7
//! Trait for extracting the inner writer from layered I/O types. use std::io; pub(crate) trait TryIntoInner<T> { fn try_into_inner(self) -> io::Result<T>; }