Enum slog_journald::Error [] [src]

pub enum Error {
    Journald(i32),
    Serialization(Error),
}

Error type for logging to journald.

Variants

Error representing a non-zero return from sd_journal_sendv.

The contained integer is the return value form sd_journal_sendv, which can be treated as an errno.

Error from serializing

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl Error for Error
[src]

A short description of the error. Read more

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

impl From<Error> for Error
[src]

Performs the conversion.