Implement fmt::Display for Vec

As this error states, you cannot implement a trait for a type you don’t own: the impl does not reference any types defined in this crate; only traits defined in the current crate can be implemented for arbitrary types However, you can implement Display for your wrapper type. The piece you are missing is to … Read more