pub enum RelaxedIdbError {
Vfs(RegisterVfsError),
ImportDb(ImportDbError),
OpenDb(OpenDbError),
IndexedDb(Error),
Generic(String),
}
Variants§
Trait Implementations§
Source§impl Debug for RelaxedIdbError
impl Debug for RelaxedIdbError
Source§impl Display for RelaxedIdbError
impl Display for RelaxedIdbError
Source§impl Error for RelaxedIdbError
impl Error for RelaxedIdbError
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 RelaxedIdbError
impl From<Error> for RelaxedIdbError
Source§impl From<ImportDbError> for RelaxedIdbError
impl From<ImportDbError> for RelaxedIdbError
Source§fn from(source: ImportDbError) -> Self
fn from(source: ImportDbError) -> Self
Converts to this type from the input type.
Source§impl From<OpenDbError> for RelaxedIdbError
impl From<OpenDbError> for RelaxedIdbError
Source§fn from(source: OpenDbError) -> Self
fn from(source: OpenDbError) -> Self
Converts to this type from the input type.
Source§impl From<RegisterVfsError> for RelaxedIdbError
impl From<RegisterVfsError> for RelaxedIdbError
Source§fn from(source: RegisterVfsError) -> Self
fn from(source: RegisterVfsError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RelaxedIdbError
impl !RefUnwindSafe for RelaxedIdbError
impl Send for RelaxedIdbError
impl !Sync for RelaxedIdbError
impl Unpin for RelaxedIdbError
impl !UnwindSafe for RelaxedIdbError
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