(&self, v: Val)
| 263 | } |
| 264 | |
| 265 | pub fn display(&self, v: Val) -> String { self.display_d(v, &mut Vec::new()) } |
| 266 | |
| 267 | /* Cycle-aware display: `seen` tracks containers on the current path, so self-referential structures emit "..." instead of recursing forever (and its length bounds raw nesting depth). */ |
| 268 | fn display_d(&self, v: Val, seen: &mut Vec<u32>) -> String { |
no test coverage detected