(&self, percent: f32)
| 249 | #[inline] |
| 250 | #[must_use] |
| 251 | pub(crate) fn progress(&self, percent: f32) -> bool { |
| 252 | if let Some(f) = &self.progress_callback { |
| 253 | f(percent) == ControlFlow::Break |
| 254 | } else { |
| 255 | false |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | #[inline(always)] |
| 260 | pub(crate) fn verbose_print(&self, msg: impl AsRef<str>) { |
no outgoing calls
no test coverage detected