podman_rest_client/v5/models/
graph_driver_data.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// GraphDriverData Information about the storage driver used to store the container's and
4/// image's filesystem.
5pub struct GraphDriverData {
6    /// Low-level storage metadata, provided as key/value pairs.
7    ///
8    /// This information is driver-specific, and depends on the storage-driver
9    /// in use, and should be used for informational purposes only.
10    #[serde(rename = "Data")]
11    pub data: std::collections::HashMap<String, String>,
12    /// Name of the storage driver.
13    #[serde(rename = "Name")]
14    pub name: String,
15}