pub enum ZipToSqliteErr {
UnableToInsertEntry(String),
InvalidEntryPath,
InvalidEntryIndex,
UnableToGetEntry,
UnableToStartTransaction(String),
UnableToCommit(String),
InvalidZipArchive(String),
UnableToPersist(String),
UnableToOpenDb(String),
UnableToOpenInMemDb(String),
UnableToReadZip(String),
UnableToCreateTable(String),
}Variants§
UnableToInsertEntry(String)
InvalidEntryPath
InvalidEntryIndex
UnableToGetEntry
UnableToStartTransaction(String)
UnableToCommit(String)
InvalidZipArchive(String)
UnableToPersist(String)
UnableToOpenDb(String)
UnableToOpenInMemDb(String)
UnableToReadZip(String)
UnableToCreateTable(String)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ZipToSqliteErr
impl RefUnwindSafe for ZipToSqliteErr
impl Send for ZipToSqliteErr
impl Sync for ZipToSqliteErr
impl Unpin for ZipToSqliteErr
impl UnwindSafe for ZipToSqliteErr
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