Enum seccomp_droundy::Action [] [src]

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

Seccomp actions

Variants

Allow the syscall to be executed

Kill the process

Throw a SIGSYS signal

Return the specified error code

Notify a tracing process with the specified value

Trait Implementations

impl Debug for Action
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Action
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Action
[src]

impl Into<uint32_t> for Action
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Action

impl Sync for Action