podman_rest_client/v5/models/
root_fs.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// RootFS holds the root fs information of an image.
4pub struct RootFs {
5    #[serde(rename = "Layers")]
6    pub layers: Option<Vec<String>>,
7    #[serde(rename = "Type")]
8    pub r#type: Option<String>,
9}