podman_rest_client/v5/models/
manifest_push_report.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3pub struct ManifestPushReport {
4    /// ID of the pushed manifest
5    #[serde(rename = "Id")]
6    pub id: Option<String>,
7    /// Error contains text of errors from pushing
8    pub error: Option<String>,
9    /// Stream used to provide push progress
10    pub stream: Option<String>,
11}