podman_rest_client/v5/models/
metadata.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// Metadata contains engine-local data about the image.
4pub struct Metadata {
5    /// LastTagTime is the date and time at which the image was last tagged.
6    #[serde(rename = "LastTagTime")]
7    pub last_tag_time: Option<String>,
8}