podman_rest_client/v5/models/
image_store.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// ImageStore describes the image store.  Right now only the number
4/// of images present
5pub struct ImageStore {
6    pub number: Option<i64>,
7}