I'd like to dynamically disable the progress bar. Right now, I repeat lots of code like ```rust if verbose { for entry in mylist.progress() { // ... } } else { for entry in mylist { // ... } } ``` There has to be a better way. Any hints?