usecrate::errors::PackError;/// Trait for structs that can pack themselves into the end of a ArrayString
pubtraitPackArrayString{/// Try to append self to the end of a ArrayString
fnpack_into<const SIZE:usize>(&self,
s:&mutarrayvec::ArrayString<SIZE>,
)->Result<(), PackError>;}