(docker: Docker, dropper: DropChute, container: DockerConstruct)
| 28 | |
| 29 | impl DockerContainer { |
| 30 | pub fn new(docker: Docker, dropper: DropChute, container: DockerConstruct) -> Self { |
| 31 | Self { |
| 32 | docker, |
| 33 | dropper, |
| 34 | container, |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | pub fn hostname(&self) -> &str { |
| 39 | &self.container.name |
nothing calls this directly
no outgoing calls
no test coverage detected