podman_rest_client/v5/models/
pod_cgroup_config.rs

1use serde::{Deserialize, Serialize};
2#[derive(Default, Debug, Serialize, Deserialize)]
3/// PodCgroupConfig contains configuration options about a pod's cgroups.
4/// This will be expanded in future updates to pods.
5pub struct PodCgroupConfig {
6    /// CgroupParent is the parent for the Cgroup that the pod will create.
7    /// This pod cgroup will, in turn, be the default cgroup parent for all
8    /// containers in the pod.
9    /// Optional.
10    pub cgroup_parent: Option<String>,
11}