(&self, msg: &str)
| 26 | } |
| 27 | |
| 28 | pub fn set_message(&self, msg: &str) { |
| 29 | if let Some(bar) = &self.bar { |
| 30 | bar.set_message(msg.to_string()); |
| 31 | } else { |
| 32 | println!("▹▹▹▹▹ {msg}"); |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | pub fn finish_and_clear(&self) { |
| 37 | if let Some(bar) = &self.bar { |
no outgoing calls
no test coverage detected