(&mut self)
| 279 | } |
| 280 | |
| 281 | fn as_mut(&mut self) -> &mut CmdShared { |
| 282 | // Clone-on-write is so easy to do with `Arc` :D |
| 283 | Arc::make_mut(&mut self.0) |
| 284 | } |
| 285 | |
| 286 | /// Set binary path, overwrites the path that was set before. |
| 287 | pub fn bin(&mut self, bin: impl Into<PathBuf>) -> &mut Self { |
no outgoing calls
no test coverage detected