(&self)
| 1192 | /// Return all breakpoints. |
| 1193 | #[cfg(feature = "debug")] |
| 1194 | pub fn breakpoints(&self) -> Option<impl Iterator<Item = crate::Breakpoint> + '_> { |
| 1195 | self.as_context().breakpoints() |
| 1196 | } |
| 1197 | |
| 1198 | /// Indicate whether single-step mode is enabled. |
| 1199 | #[cfg(feature = "debug")] |
nothing calls this directly
no test coverage detected