(mut self, switch: S)
| 136 | } |
| 137 | |
| 138 | pub fn add_docker_switch<S: AsRef<OsStr>>(mut self, switch: S) -> Self { |
| 139 | self.switches.push(switch.as_ref().into()); |
| 140 | self |
| 141 | } |
| 142 | |
| 143 | pub fn set_working_directory<S: AsRef<OsStr>>(self, directory: S) -> Self { |
| 144 | let mut cmd = self; |
no outgoing calls
no test coverage detected