Enum gitjournal::Error [] [src]

pub enum Error {
    Git(Error),
    Io(Error),
    Term(Error),
    Setup(Error),
    Parser(Error),
}

An enumeration of possible errors that can happen when working with git-journal.

Variants

Erros related to the git repository.

Erros related to the system IO, like parsing of the configuration file.

Errors related to the terminal emulation, which is used for colored output.

Errors related to the setup process.

Errors related to the parsing and printing of the log.

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl From<Error> for Error
[src]

Performs the conversion.

impl Display for Error
[src]

Formats the value using the given formatter.