(&self, msg: S, val: Option<f32>)
| 108 | } |
| 109 | |
| 110 | pub fn status<S: AsRef<str>>(&self, msg: S, val: Option<f32>) { |
| 111 | self.send(&GuiResponse::Status { |
| 112 | status: msg.as_ref().to_owned(), |
| 113 | pct: val, |
| 114 | }); |
| 115 | } |
| 116 | |
| 117 | pub fn folder<P: AsRef<Path>>(&self, path: P) { |
| 118 | self.send(&GuiResponse::Folder { |
no test coverage detected