Enum cursive::theme::Error [] [src]

pub enum Error {
    IoError(Error),
    ParseError,
}

Possible error returned when loading a theme.

Variants

IoError(Error)

An error occured when reading the file.

ParseError

An error occured when parsing the toml content.

Trait Implementations

impl Debug for Error
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl From<Error> for Error
[src]

fn from(err: Error) -> Self

Performs the conversion.