pub struct Exception {
pub code: i32,
pub name: String,
pub display_text: String,
pub stack_trace: String,
pub nested: Option<Box<Exception>>,
}Expand description
Exception from server
Fields§
§code: i32ClickHouse error code.
name: StringException class name.
display_text: StringHuman-readable error message.
stack_trace: StringServer-side stack trace.
nested: Option<Box<Exception>>Optional nested (chained) exception.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Exception
impl RefUnwindSafe for Exception
impl Send for Exception
impl Sync for Exception
impl Unpin for Exception
impl UnwindSafe for Exception
Blanket Implementations§
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