pub struct AlreadyClosed;Expand description
If the connection is already closed, this will be returned
for the user to convert into their own error type. This can be
converted into Error and rusqlite::Error so that either
can be returned in the Connection::call() function.
Trait Implementations§
Source§impl Clone for AlreadyClosed
impl Clone for AlreadyClosed
Source§fn clone(&self) -> AlreadyClosed
fn clone(&self) -> AlreadyClosed
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 AlreadyClosed
impl Debug for AlreadyClosed
Source§impl From<AlreadyClosed> for Error
impl From<AlreadyClosed> for Error
Source§fn from(_: AlreadyClosed) -> Self
fn from(_: AlreadyClosed) -> Self
Converts to this type from the input type.
Source§impl From<AlreadyClosed> for Error
impl From<AlreadyClosed> for Error
Source§fn from(_: AlreadyClosed) -> Self
fn from(_: AlreadyClosed) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AlreadyClosed
impl PartialEq for AlreadyClosed
impl Copy for AlreadyClosed
impl Eq for AlreadyClosed
impl StructuralPartialEq for AlreadyClosed
Auto Trait Implementations§
impl Freeze for AlreadyClosed
impl RefUnwindSafe for AlreadyClosed
impl Send for AlreadyClosed
impl Sync for AlreadyClosed
impl Unpin for AlreadyClosed
impl UnwindSafe for AlreadyClosed
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