podman-rest-client 0.13.0

Interface for querying the podman REST API. Supports connections over SSH.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use serde::{Deserialize, Serialize};
#[derive(Default, Debug, Serialize, Deserialize)]
/// SystemDfReport describes the response for df information
pub struct SystemDfReport {
    #[serde(rename = "Containers")]
    pub containers: Option<Vec<crate::v5::models::SystemDfContainerReport>>,
    #[serde(rename = "Images")]
    pub images: Option<Vec<crate::v5::models::SystemDfImageReport>>,
    #[serde(rename = "ImagesSize")]
    pub images_size: Option<i64>,
    #[serde(rename = "Volumes")]
    pub volumes: Option<Vec<crate::v5::models::SystemDfVolumeReport>>,
}