podman_rest_client/v5/models/overlay_volume.rs
1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// OverlayVolume holds information about an overlay volume that will be mounted into
4/// the container.
5pub struct OverlayVolume {
6 /// Destination is the absolute path where the mount will be placed in the container.
7 pub destination: Option<String>,
8 /// Options holds overlay volume options.
9 pub options: Option<Vec<String>>,
10 /// Source specifies the source path of the mount.
11 pub source: Option<String>,
12}