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.
6pub force: Option<bool>,
7}