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)
| 280 | /// |
| 281 | /// * `pb` - The progress bar to clear |
| 282 | pub fn finish_and_clear(pb: &ProgressBar) { |
| 283 | pb.finish_and_clear(); |
| 284 | } |
| 285 | |
| 286 | /// Finish a progress bar with an error message. |
| 287 | /// |
no outgoing calls