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 PodKubeGenerateOptions<'a> {
    pub names: Vec<&'a str>,
    pub no_trunc: Option<bool>,
    pub podman_only: Option<bool>,
    pub replicas: Option<i32>,
    pub service: Option<bool>,
    pub r#type: Option<&'a str>,
}

pub type PodKubeGenerate = String;