podman_client/containers/kube_apply.rs
1use crate::{
2 client::Client,
3 models::{
4 lib::Error,
5 podman::containers::kube_apply::{ContainerKubeApply, ContainerKubeApplyOptions},
6 },
7};
8
9impl Client {
10 pub async fn container_kube_apply(
11 &self,
12 options: ContainerKubeApplyOptions<'_>,
13 ) -> Result<ContainerKubeApply, Error> {
14 self.pod_kube_apply(options).await
15 }
16}