(
&self,
_id: &str,
_options: Option<RemoveContainerOptions>,
)
| 920 | #[async_trait] |
| 921 | impl DockerClient for NoContainerDockerClient { |
| 922 | async fn remove_container( |
| 923 | &self, |
| 924 | _id: &str, |
| 925 | _options: Option<RemoveContainerOptions>, |
| 926 | ) -> Result<(), String> { |
| 927 | Err("No such container: tsk-proxy-abcd1234".to_string()) |
| 928 | } |
| 929 | |
| 930 | async fn create_container( |
| 931 | &self, |