Enum seccomp::Action [] [src]

pub enum Action {
    Allow,
    Kill,
    Trap,
    Errno(i32),
    Trace(u32),
}

Seccomp actions

Variants

Allow

Allow the syscall to be executed

Kill

Kill the process

Trap

Throw a SIGSYS signal

Errno

Return the specified error code

Trace

Notify a tracing process with the specified value

Trait Implementations

impl Into<uint32_t> for Action

fn into(self) -> uint32_t

Derived Implementations

impl Copy for Action

impl Clone for Action

fn clone(&self) -> Action

fn clone_from(&mut self, source: &Self)

impl Debug for Action

fn fmt(&self, __arg_0: &mut Formatter) -> Result