pub trait IntoInner { type Inner; // Required method fn into_inner(self) -> Self::Inner; }
IntoInner is typically used for basic structures that wrap a single value.