podman_rest_client/v4/params/
volume_delete.rs

1#[derive(Default, Debug)]
2pub struct VolumeDelete {
3    /// Force removal of the volume. This actually only causes errors due
4    /// to the names volume not being found to be suppressed, which is the
5    /// behaviour Docker implements.
6    pub force: Option<bool>,
7}