podman_rest_client/v5/models/
registry_search_response.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3pub struct RegistrySearchResponse {
4    /// Automated indicates if the image was created by an automated build.
5    #[serde(rename = "Automated")]
6    pub automated: Option<String>,
7    /// Description of the image.
8    #[serde(rename = "Description")]
9    pub description: Option<String>,
10    /// Index is the image index
11    #[serde(rename = "Index")]
12    pub index: Option<String>,
13    /// Name is the canonical name of the image
14    #[serde(rename = "Name")]
15    pub name: Option<String>,
16    /// Official indicates if it's an official image.
17    #[serde(rename = "Official")]
18    pub official: Option<String>,
19    /// Stars is the number of stars of the image.
20    #[serde(rename = "Stars")]
21    pub stars: Option<i64>,
22    /// Tag is the image tag
23    #[serde(rename = "Tag")]
24    pub tag: Option<String>,
25}