A snapshot of a log record that can be stored across the rolling-buffer lifetime (the original `log::Record` borrows data and cannot be kept).
| 40 | /// A snapshot of a log record that can be stored across the rolling-buffer |
| 41 | /// lifetime (the original `log::Record` borrows data and cannot be kept). |
| 42 | struct DeferredLog { |
| 43 | level: log::Level, |
| 44 | message: String, |
| 45 | target: String, |
| 46 | } |
| 47 | |
| 48 | /// Hide the progress bar temporarily, execute `f`, then redraw the progress bar. |
| 49 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected