Enum fruitbasket::FruitError [] [src]

pub enum FruitError {
    UnsupportedPlatform(String),
    IOError(String),
    GeneralError(String),
}

Class for errors generated by fruitbasket. Dereferences to a String.

Variants

fruitbasket doesn't run on this platform (safe to ignore)

Disk I/O errors: failed to write app bundle to disk

Any other unclassified error

Trait Implementations

impl Debug for FruitError
[src]

[src]

Formats the value using the given formatter. Read more

impl Display for FruitError
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Error> for FruitError
[src]

[src]

Performs the conversion.

impl Error for FruitError
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

Auto Trait Implementations

impl Send for FruitError

impl Sync for FruitError