Enum editeur::sprite::EmotionError [] [src]

pub enum EmotionError {
    UnknownEmotion(String),
}

The enum EmotionError defines the possible errors from constructor Emotion.

Variants

Trait Implementations

impl Clone for EmotionError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EmotionError
[src]

Formats the value using the given formatter.

impl Display for EmotionError
[src]

The function fmt formats the value using the given formatter.

impl Error for EmotionError
[src]

The function description returns a short description of the error.

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