(&self, f: &mut fmt::Formatter<'_>)
| 55 | |
| 56 | impl fmt::Debug for Mat { |
| 57 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 58 | f.debug_struct("Mat") |
| 59 | .field("rows", &self.rows) |
| 60 | .field("cols", &self.cols) |
| 61 | .field("channels", &self.channels) |
| 62 | .field("step", &self.step) |
| 63 | .finish() |
| 64 | } |
| 65 | } |
nothing calls this directly
no outgoing calls
no test coverage detected