Enum mycon::ExecAction[][src]

pub enum ExecAction {
    Real,
    Deny,
}

Specifies what action to take when the program attempts to execute a shell command.

Variants

Allows any commands issued by the program to be executed by the system shell.

Denies the ability to execute commands. The = instruction will fail and the interpreter will report that it is unsupported.

Trait Implementations

impl Clone for ExecAction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for ExecAction
[src]

impl Debug for ExecAction
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ExecAction
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for ExecAction
[src]

Auto Trait Implementations

impl Send for ExecAction

impl Sync for ExecAction