Enum editeur::prelude::SheetError [] [src]

pub enum SheetError {
    UnknownSheet(String),
}

The enum SheetError defines the possible errors from constructor Sheet.

Variants

Trait Implementations

impl Clone for SheetError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SheetError
[src]

Formats the value using the given formatter.

impl Display for SheetError
[src]

The function fmt formats the value using the given formatter.

impl Error for SheetError
[src]

The function description returns a short description of the error.

The function cause returns the lower-level cause of this error if any.