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
14
use serde::{Deserialize, Serialize};
#[derive(Default, Debug, Serialize, Deserialize)]
/// InspectBlkioWeightDevice holds information about the relative weight
/// of an individual device node. Weights are used in the I/O scheduler to give
/// relative priority to some accesses.
pub struct InspectBlkioWeightDevice {
    /// Path is the path to the device this applies to.
    #[serde(rename = "Path")]
    pub path: Option<String>,
    /// Weight is the relative weight the scheduler will use when scheduling
    /// I/O.
    #[serde(rename = "Weight")]
    pub weight: Option<u16>,
}