Enum postgres_shared::error::Severity [−][src]
pub enum Severity { Panic, Fatal, Error, Warning, Notice, Debug, Info, Log, }
The severity of a Postgres error or notice.
Variants
Panic
PANIC
Fatal
FATAL
Error
ERROR
Warning
WARNING
Notice
NOTICE
Debug
DEBUG
Info
INFO
Log
LOG
Trait Implementations
impl Debug for Severity
[src]
impl Debug for Severity
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl Copy for Severity
[src]
impl Copy for Severity
impl Clone for Severity
[src]
impl Clone for Severity
fn clone(&self) -> Severity
[src]
fn clone(&self) -> Severity
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
1.0.0
[src]Performs copy-assignment from source
. Read more
impl PartialEq for Severity
[src]
impl PartialEq for Severity
fn eq(&self, other: &Severity) -> bool
[src]
fn eq(&self, other: &Severity) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]This method tests for !=
.
impl Eq for Severity
[src]
impl Eq for Severity
impl Display for Severity
[src]
impl Display for Severity