pub fn display<T: Display, const CAP: usize>(
arrayvec: &ArrayVec<T, CAP>,
) -> String
Expand description
Returns a string with the displayed string format of an ArrayVec. This is a temporary work-around until internal ArrayVec is stable, as Display cannot be implemented on external types.