| 600 | #[pyclass(module = "re", name = "Match")] |
| 601 | #[derive(Debug, PyPayload)] |
| 602 | pub(crate) struct Match { |
| 603 | string: PyObjectRef, |
| 604 | pattern: PyRef<Pattern>, |
| 605 | pos: usize, |
| 606 | endpos: usize, |
| 607 | lastindex: isize, |
| 608 | regs: Vec<(isize, isize)>, |
| 609 | } |
| 610 | |
| 611 | #[pyclass(with(AsMapping, Representable))] |
| 612 | impl Match { |
no outgoing calls
no test coverage detected