podman-client 0.0.2

A native Rust client for the Podman REST API over Unix sockets
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Default)]
pub struct PodKubeApplyOptions<'a> {
    pub ca_cert_file: Option<&'a str>,
    pub file: Option<&'a str>,
    pub kube_config: Option<&'a str>,
    pub namespace: Option<&'a str>,
    pub service: Option<bool>,
    pub kubernetes_yaml_file: String,
}

pub type PodKubeApply = String;