#[repr(i32)]pub enum LockedError {
SharedCache = 262,
VTab = 518,
}Variants§
Access to an SQLite data record is blocked by another database connection that is using the same record in shared cache mode.
VTab = 518
Not used by the SQLite core, but available for use by extensions.
Trait Implementations§
Source§impl Clone for LockedError
impl Clone for LockedError
Source§fn clone(&self) -> LockedError
fn clone(&self) -> LockedError
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 LockedError
impl Debug for LockedError
Source§impl PartialEq for LockedError
impl PartialEq for LockedError
impl Copy for LockedError
impl Eq for LockedError
impl StructuralPartialEq for LockedError
Auto Trait Implementations§
impl Freeze for LockedError
impl RefUnwindSafe for LockedError
impl Send for LockedError
impl Sync for LockedError
impl Unpin for LockedError
impl UnwindSafe for LockedError
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