(&self, f: &mut fmt::Formatter<'_>)
| 293 | |
| 294 | impl<L: Link> fmt::Debug for LinkedList<L, L::Target> { |
| 295 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 296 | f.debug_struct("LinkedList") |
| 297 | .field("head", &self.head) |
| 298 | // .field("tail", &self.tail) |
| 299 | .finish() |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | impl<L: Link> Default for LinkedList<L, L::Target> { |