pub enum IndexStoreError {
Database(String),
}Expand description
Errors originating from the SQLite index store.
Variants§
Trait Implementations§
Source§impl Debug for IndexStoreError
impl Debug for IndexStoreError
Source§impl Display for IndexStoreError
impl Display for IndexStoreError
Source§impl Error for IndexStoreError
impl Error for IndexStoreError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<Error> for IndexStoreError
impl From<Error> for IndexStoreError
Source§impl From<IndexStoreError> for IndexError
impl From<IndexStoreError> for IndexError
Source§fn from(source: IndexStoreError) -> Self
fn from(source: IndexStoreError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IndexStoreError
impl RefUnwindSafe for IndexStoreError
impl Send for IndexStoreError
impl Sync for IndexStoreError
impl Unpin for IndexStoreError
impl UnsafeUnpin for IndexStoreError
impl UnwindSafe for IndexStoreError
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