pub trait Inner<T> {
// Required methods
fn inner(&self) -> &T;
fn into_inner(self) -> T;
}Expand description
§============================================================================ MISC HELPERS
Inner
For newtypes to expose their innermost value.