Enum mycon::FileView[][src]

pub enum FileView {
    Real,
    Deny,
}

Specifies how to react when the program tries to access a file.

Variants

Gives complete access to the real filesystem.

Denies any file access. The i and o instructions will fail and the interpreter will report that they are unsupported.

Trait Implementations

impl Clone for FileView
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for FileView
[src]

impl Debug for FileView
[src]

Formats the value using the given formatter. Read more

impl PartialEq for FileView
[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 FileView
[src]

Auto Trait Implementations

impl Send for FileView

impl Sync for FileView