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.
2 parents 34d7b8d + a4ed1b8 commit 6e61239Copy full SHA for 6e61239
lib.rs
@@ -1513,6 +1513,15 @@ pub struct IntoIter<A: Array> {
1513
end: usize,
1514
}
1515
1516
+impl<A: Array> fmt::Debug for IntoIter<A>
1517
+where
1518
+ A::Item: fmt::Debug,
1519
+{
1520
+ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
1521
+ f.debug_tuple("IntoIter").field(&self.as_slice()).finish()
1522
+ }
1523
+}
1524
+
1525
impl<A: Array + Clone> Clone for IntoIter<A>
1526
where
1527
A::Item: Clone,
0 commit comments