(&mut self, n: u32)
| 35 | self.writer |
| 36 | } |
| 37 | pub fn indent(&mut self, n: u32) { |
| 38 | self.level = self.level.saturating_add(n); |
| 39 | } |
| 40 | pub fn dedent(&mut self, n: u32) { |
| 41 | self.level = self.level.saturating_sub(n); |
| 42 | } |
no outgoing calls
no test coverage detected