(&mut self, field: impl Into<String>)
| 74 | } |
| 75 | |
| 76 | pub fn push_field(&mut self, field: impl Into<String>) { |
| 77 | self.field_stack.push(field.into()); |
| 78 | } |
| 79 | |
| 80 | pub fn push_index(&mut self, index: usize) { |
| 81 | self.push_field(index.to_string()) |
no outgoing calls
no test coverage detected