Enum common_failures::io::Operation [] [src]

pub enum Operation {
    Create,
    Read,
    Write,
    Delete,
    Other,
}

General categories of I/O operations that might fail.

Variants

Creating a file or a directory.

Reading a file.

Writing a file.

Deleting a file or a directory.

Another operation.

Trait Implementations

impl Clone for Operation
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Operation
[src]

[src]

Formats the value using the given formatter.

impl Eq for Operation
[src]

impl PartialEq for Operation
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

impl Display for Operation
[src]

[src]

Formats the value using the given formatter. Read more