[][src]Struct oci_spec::runtime::Linux

pub struct Linux {
    pub uid_mappings: Option<Vec<LinuxIDMapping>>,
    pub gid_mappings: Option<Vec<LinuxIDMapping>>,
    pub sysctl: Option<HashMap<String, String>>,
    pub resources: Option<LinuxResources>,
    pub cgroups_path: Option<String>,
    pub namespaces: Option<Vec<LinuxNamespace>>,
    pub devices: Option<Vec<LinuxDevice>>,
    pub seccomp: Option<LinuxSeccomp>,
    pub rootfs_propagation: Option<String>,
    pub masked_paths: Option<Vec<String>>,
    pub readonly_paths: Option<Vec<String>>,
    pub mount_label: Option<String>,
    pub intel_rdt: Option<LinuxIntelRdt>,
}

Fields

uid_mappings: Option<Vec<LinuxIDMapping>>gid_mappings: Option<Vec<LinuxIDMapping>>sysctl: Option<HashMap<String, String>>resources: Option<LinuxResources>cgroups_path: Option<String>namespaces: Option<Vec<LinuxNamespace>>devices: Option<Vec<LinuxDevice>>seccomp: Option<LinuxSeccomp>rootfs_propagation: Option<String>masked_paths: Option<Vec<String>>readonly_paths: Option<Vec<String>>mount_label: Option<String>intel_rdt: Option<LinuxIntelRdt>

Trait Implementations

impl Debug for Linux[src]

impl Serialize for Linux[src]

impl<'de> Deserialize<'de> for Linux[src]

Auto Trait Implementations

impl Send for Linux

impl Sync for Linux

impl Unpin for Linux

impl UnwindSafe for Linux

impl RefUnwindSafe for Linux

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]