Enum github_templates::ErrorKind[][src]

pub enum ErrorKind {
    Log,
    Other,
    Io(Error),
}

A list enumerating the categories of errors in this crate.

This list is intended to grow over time and it is not recommended to exhaustively match against it.

It is used with the Error struct.

Variants

An error caused by log failure.

Any error not part of this list.

An error caused by an IO failure.

Trait Implementations

impl Debug for ErrorKind
[src]

Formats the value using the given formatter. Read more

impl From<ErrorKind> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for ErrorKind

impl Sync for ErrorKind