pub trait WrapInto<T> { // Required method fn wrap_into(self) -> T; }
Convert one type to another by wrapping.