Enum tokio_postgres::error::Severity [] [src]

pub enum Severity {
    Panic,
    Fatal,
    Error,
    Warning,
    Notice,
    Debug,
    Info,
    Log,
}

The severity of a Postgres error or notice.

Variants

PANIC

FATAL

ERROR

WARNING

NOTICE

DEBUG

INFO

LOG

Trait Implementations

impl Display for Severity
[src]

Formats the value using the given formatter. Read more

impl Copy for Severity
[src]

impl Eq for Severity
[src]

impl PartialEq<Severity> for Severity
[src]

impl Debug for Severity
[src]

Formats the value using the given formatter.

impl Clone for Severity
[src]