podman_rest_client/v5/models/linux_network.rs
1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// LinuxNetwork identification and priority configuration
4pub struct LinuxNetwork {
5 /// Set class identifier for container's network packets
6 #[serde(rename = "classID")]
7 pub class_id: Option<u32>,
8 /// Set priority of network traffic for container
9 pub priorities: Option<Vec<crate::v5::models::LinuxInterfacePriority>>,
10}