(&self, f: &mut fmt::Formatter)
| 35 | |
| 36 | impl<'a, C: 'a + fmt::Debug + BlockContext> fmt::Debug for Edge<'a, C> { |
| 37 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 38 | write!( |
| 39 | f, |
| 40 | "{:?} ({}) {:?} -> {:?}", |
| 41 | self.branch, self.back_edge, &*self.source, &*self.target |
| 42 | ) |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | pub struct EdgeContext<'a, C: 'a + BlockContext> { |
nothing calls this directly
no test coverage detected