podman_client/containers/
kube_play_remove.rs

1use crate::{
2    client::Client,
3    models::{
4        lib::Error,
5        podman::containers::kube_play_remove::{
6            ContainerKubePlayRemove, ContainerKubePlayRemoveOptions,
7        },
8    },
9};
10
11impl Client {
12    pub async fn container_kube_play_remove(
13        &self,
14        options: Option<ContainerKubePlayRemoveOptions>,
15    ) -> Result<ContainerKubePlayRemove, Error> {
16        self.pod_kube_play_remove(options).await
17    }
18}