Struct k8s_openapi::api::core::v1::SeccompProfile
source · pub struct SeccompProfile {
pub localhost_profile: Option<String>,
pub type_: String,
}
Expand description
SeccompProfile defines a pod/container’s seccomp profile settings. Only one profile source may be set.
Fields§
§localhost_profile: Option<String>
localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet’s configured seccomp profile location. Must be set if type is “Localhost”. Must NOT be set for any other type.
type_: String
type indicates which kind of seccomp profile will be applied. Valid options are:
Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied.
Trait Implementations§
source§impl Clone for SeccompProfile
impl Clone for SeccompProfile
source§fn clone(&self) -> SeccompProfile
fn clone(&self) -> SeccompProfile
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SeccompProfile
impl Debug for SeccompProfile
source§impl DeepMerge for SeccompProfile
impl DeepMerge for SeccompProfile
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
Merge
other
into self
.source§impl Default for SeccompProfile
impl Default for SeccompProfile
source§fn default() -> SeccompProfile
fn default() -> SeccompProfile
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for SeccompProfile
impl<'de> Deserialize<'de> for SeccompProfile
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for SeccompProfile
impl PartialEq for SeccompProfile
source§impl Serialize for SeccompProfile
impl Serialize for SeccompProfile
impl StructuralPartialEq for SeccompProfile
Auto Trait Implementations§
impl Freeze for SeccompProfile
impl RefUnwindSafe for SeccompProfile
impl Send for SeccompProfile
impl Sync for SeccompProfile
impl Unpin for SeccompProfile
impl UnwindSafe for SeccompProfile
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)