podman_rest_client/v5/models/linux_interface_priority.rs
1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// LinuxInterfacePriority for network interfaces
4pub struct LinuxInterfacePriority {
5 /// Name is the name of the network interface
6 pub name: Option<String>,
7 /// Priority for the interface
8 pub priority: Option<u32>,
9}