pub enum Severity {
Syntax(ClickHouseError),
Query(ClickHouseError),
Data(ClickHouseError),
Protocol(ClickHouseError),
Server(ClickHouseError),
Unknown(ClickHouseError),
}Expand description
Wrapper to indicate level of severity of error
Variants§
Syntax(ClickHouseError)
Query(ClickHouseError)
Data(ClickHouseError)
Protocol(ClickHouseError)
Server(ClickHouseError)
Unknown(ClickHouseError)
Trait Implementations§
Source§impl Error for Severity
impl Error for Severity
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for Severity
impl RefUnwindSafe for Severity
impl Send for Severity
impl Sync for Severity
impl Unpin for Severity
impl UnsafeUnpin for Severity
impl UnwindSafe for Severity
Blanket Implementations§
impl<T> Allocation for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more