(&self)
| 216 | |
| 217 | impl Clone for Docker { |
| 218 | fn clone(&self) -> Self { |
| 219 | Self { |
| 220 | config_path: TempDir::with_prefix("docker-").unwrap(), |
| 221 | builder_location: self.builder_location.clone(), |
| 222 | socket_location: self.socket_location.clone(), |
| 223 | common_envs: self.common_envs.clone(), |
| 224 | } |
| 225 | } |
| 226 | } |
| 227 | |
| 228 | impl Docker { |
no outgoing calls