podman_rest_client/v5/models/libpod_images_pull_report.rs
1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3pub struct LibpodImagesPullReport {
4 /// Error contains text of errors from c/image
5 pub error: Option<String>,
6 /// ID contains image id (retained for backwards compatibility)
7 pub id: Option<String>,
8 /// Images contains the ID's of the images pulled
9 pub images: Option<Vec<String>>,
10 /// Stream used to provide output from c/image
11 pub stream: Option<String>,
12}