wrapper 0.1.1

A trait for types that wrap other types.
Documentation
1
2
3
4
5
6
7
use base::io::{BufReader, Cursor, Take};

use crate::Wrapper;

implement_into_inner_t!(BufReader<T>);
implement_into_inner_t!(Cursor<T>);
implement_into_inner_t!(Take<T>);