podman_rest_client/v5/models/
root_fs.rs1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3pub struct RootFs {
5 #[serde(rename = "Layers")]
6 pub layers: Option<Vec<String>>,
7 #[serde(rename = "Type")]
8 pub r#type: Option<String>,
9}