We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a56ed6e commit 7cd1aecCopy full SHA for 7cd1aec
lib.rs
@@ -1184,7 +1184,7 @@ impl<A: Array> Extend<A::Item> for SmallVec<A> {
1184
1185
impl<A: Array> fmt::Debug for SmallVec<A> where A::Item: fmt::Debug {
1186
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1187
- write!(f, "{:?}", &**self)
+ f.debug_list().entries(self.iter()).finish()
1188
}
1189
1190
0 commit comments