| 696 | #[derive(Clone)] |
| 697 | #[must_use = "iterators are lazy and do nothing unless consumed"] |
| 698 | pub struct Iter<'a> { |
| 699 | inner: Components<'a>, |
| 700 | } |
| 701 | |
| 702 | impl<'a> Components<'a> { |
| 703 | // Given the iteration so far, how much of the pre-State::Body path is left? |
nothing calls this directly
no outgoing calls
no test coverage detected