#[derive(Inner)]
Adds an inner() method that returns a copy of the wrapped type.
inner()
#[derive(Inner)] struct MyStruct(usize)
adds
impl MyStruct { pub fn inner(&self) -> usize { self.0 } }