pub struct SqliteErrorCode { /* private fields */ }
Expand description
An opaque type representing a SQLite error code.
Implementations§
Source§impl SqliteErrorCode
impl SqliteErrorCode
Sourcepub fn raw_code(&self) -> Option<c_int>
pub fn raw_code(&self) -> Option<c_int>
The raw extended error code from the SQLite C API, if there is one.
See the SQLite docs for more information.
Trait Implementations§
Source§impl Clone for SqliteErrorCode
impl Clone for SqliteErrorCode
Source§fn clone(&self) -> SqliteErrorCode
fn clone(&self) -> SqliteErrorCode
Returns a copy 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 SqliteErrorCode
impl Debug for SqliteErrorCode
Source§impl Display for SqliteErrorCode
impl Display for SqliteErrorCode
Source§impl PartialEq for SqliteErrorCode
impl PartialEq for SqliteErrorCode
impl Eq for SqliteErrorCode
impl StructuralPartialEq for SqliteErrorCode
Auto Trait Implementations§
impl Freeze for SqliteErrorCode
impl RefUnwindSafe for SqliteErrorCode
impl Send for SqliteErrorCode
impl Sync for SqliteErrorCode
impl Unpin for SqliteErrorCode
impl UnwindSafe for SqliteErrorCode
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