Struct oci_spec::runtime::LinuxSeccomp
source · pub struct LinuxSeccomp { /* private fields */ }
Expand description
LinuxSeccomp represents syscall restrictions.
Implementations§
source§impl LinuxSeccomp
impl LinuxSeccomp
sourcepub fn default_action(&self) -> LinuxSeccompAction
pub fn default_action(&self) -> LinuxSeccompAction
The default action to be done.
sourcepub fn default_errno_ret(&self) -> Option<u32>
pub fn default_errno_ret(&self) -> Option<u32>
The default error return code to use when the default action is SCMP_ACT_ERRNO.
source§impl LinuxSeccomp
impl LinuxSeccomp
sourcepub fn architectures(&self) -> &Option<Vec<Arch>>
pub fn architectures(&self) -> &Option<Vec<Arch>>
Available architectures for the restriction.
sourcepub fn flags(&self) -> &Option<Vec<LinuxSeccompFilterFlag>>
pub fn flags(&self) -> &Option<Vec<LinuxSeccompFilterFlag>>
Flags added to the seccomp restriction.
sourcepub fn listener_path(&self) -> &Option<PathBuf>
pub fn listener_path(&self) -> &Option<PathBuf>
The unix domain socket path over which runtime will use for SCMP_ACT_NOTIFY
.
sourcepub fn listener_metadata(&self) -> &Option<String>
pub fn listener_metadata(&self) -> &Option<String>
An opaque data to pass to the seccomp agent.
sourcepub fn syscalls(&self) -> &Option<Vec<LinuxSyscall>>
pub fn syscalls(&self) -> &Option<Vec<LinuxSyscall>>
The syscalls for the restriction.
source§impl LinuxSeccomp
impl LinuxSeccomp
sourcepub fn set_default_action(&mut self, val: LinuxSeccompAction) -> &mut Self
pub fn set_default_action(&mut self, val: LinuxSeccompAction) -> &mut Self
The default action to be done.
sourcepub fn set_default_errno_ret(&mut self, val: Option<u32>) -> &mut Self
pub fn set_default_errno_ret(&mut self, val: Option<u32>) -> &mut Self
The default error return code to use when the default action is SCMP_ACT_ERRNO.
sourcepub fn set_architectures(&mut self, val: Option<Vec<Arch>>) -> &mut Self
pub fn set_architectures(&mut self, val: Option<Vec<Arch>>) -> &mut Self
Available architectures for the restriction.
sourcepub fn set_flags(
&mut self,
val: Option<Vec<LinuxSeccompFilterFlag>>,
) -> &mut Self
pub fn set_flags( &mut self, val: Option<Vec<LinuxSeccompFilterFlag>>, ) -> &mut Self
Flags added to the seccomp restriction.
sourcepub fn set_listener_path(&mut self, val: Option<PathBuf>) -> &mut Self
pub fn set_listener_path(&mut self, val: Option<PathBuf>) -> &mut Self
The unix domain socket path over which runtime will use for SCMP_ACT_NOTIFY
.
sourcepub fn set_listener_metadata(&mut self, val: Option<String>) -> &mut Self
pub fn set_listener_metadata(&mut self, val: Option<String>) -> &mut Self
An opaque data to pass to the seccomp agent.
sourcepub fn set_syscalls(&mut self, val: Option<Vec<LinuxSyscall>>) -> &mut Self
pub fn set_syscalls(&mut self, val: Option<Vec<LinuxSyscall>>) -> &mut Self
The syscalls for the restriction.
Trait Implementations§
source§impl Clone for LinuxSeccomp
impl Clone for LinuxSeccomp
source§fn clone(&self) -> LinuxSeccomp
fn clone(&self) -> LinuxSeccomp
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 LinuxSeccomp
impl Debug for LinuxSeccomp
source§impl Default for LinuxSeccomp
impl Default for LinuxSeccomp
source§fn default() -> LinuxSeccomp
fn default() -> LinuxSeccomp
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for LinuxSeccomp
impl<'de> Deserialize<'de> for LinuxSeccomp
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 LinuxSeccomp
impl PartialEq for LinuxSeccomp
source§fn eq(&self, other: &LinuxSeccomp) -> bool
fn eq(&self, other: &LinuxSeccomp) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for LinuxSeccomp
impl Serialize for LinuxSeccomp
impl Eq for LinuxSeccomp
impl StructuralPartialEq for LinuxSeccomp
Auto Trait Implementations§
impl Freeze for LinuxSeccomp
impl RefUnwindSafe for LinuxSeccomp
impl Send for LinuxSeccomp
impl Sync for LinuxSeccomp
impl Unpin for LinuxSeccomp
impl UnwindSafe for LinuxSeccomp
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)