Finish and completely clear a progress bar from the terminal. Unlike `finish_success`/`finish_error`, this removes the progress bar entirely without leaving a message. # Arguments `pb` - The progress bar to clear
(pb: &ProgressBar)
| 260 | /// |
| 261 | /// * `pb` - The progress bar to clear |
| 262 | pub fn finish_and_clear(pb: &ProgressBar) { |
| 263 | pb.finish_and_clear(); |
| 264 | } |
| 265 | |
| 266 | /// Finish a progress bar with an error message. |
| 267 | /// |
no outgoing calls