1 2 3 4 5 6 7 8 9
use crate::models::podman::common::pod_rm_report::PodRmReport; #[derive(Default)] pub struct PodRemoveOptions<'a> { pub name: &'a str, pub force: Option<bool>, } pub type PodRemove = PodRmReport;