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
12
use crate::models::podman::images::remove::ImageRemove;

#[derive(Default)]
pub struct ImageRemoveManyOptions<'a> {
    pub all: Option<bool>,
    pub force: Option<bool>,
    pub ignore: Option<bool>,
    pub images: Option<Vec<&'a str>>,
    pub lookup_manifest: Option<bool>,
}

pub type ImageRemoveMany = ImageRemove;