pub struct SQLExceptionBuilder { /* private fields */ }
Trait Implementations§
Source§impl Clone for SQLExceptionBuilder
impl Clone for SQLExceptionBuilder
Source§fn clone(&self) -> SQLExceptionBuilder
fn clone(&self) -> SQLExceptionBuilder
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SQLExceptionBuilder
impl Debug for SQLExceptionBuilder
Source§impl Default for SQLExceptionBuilder
impl Default for SQLExceptionBuilder
Source§impl PartialEq for SQLExceptionBuilder
impl PartialEq for SQLExceptionBuilder
Source§impl SQLParamImpl for SQLExceptionBuilder
impl SQLParamImpl for SQLExceptionBuilder
Source§impl SuperBuilderImpl<SQLException> for SQLExceptionBuilder
impl SuperBuilderImpl<SQLException> for SQLExceptionBuilder
fn new() -> Self
fn code(&self) -> u32
fn msg(&self) -> &str
fn level(&self) -> ExceptionLevel
fn set_code(&mut self, code: u32) -> &mut Self
fn set_msg(&mut self, msg: &str) -> &mut Self
fn set_level(&mut self, level: ExceptionLevel) -> &mut Self
fn exception_type(&self) -> Exceptions
fn timestamp(&self) -> Duration
fn build(&mut self) -> SQLException
impl StructuralPartialEq for SQLExceptionBuilder
Auto Trait Implementations§
impl Freeze for SQLExceptionBuilder
impl RefUnwindSafe for SQLExceptionBuilder
impl Send for SQLExceptionBuilder
impl Sync for SQLExceptionBuilder
impl Unpin for SQLExceptionBuilder
impl UnwindSafe for SQLExceptionBuilder
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