(&self, f: &mut fmt::Formatter<'_>)
| 69 | |
| 70 | impl fmt::Debug for PyTokenizerIter { |
| 71 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 72 | f.debug_struct("PyTokenizerIter") |
| 73 | .field("extra_tokens", &self.extra_tokens) |
| 74 | .field("encoding", &self.encoding) |
| 75 | .finish() |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | #[pyclass(with(Constructor, Iterable, IterNext))] |