pub enum SnapshotImportError {
UnsupportedSchemaVersion {
got: String,
expected: &'static str,
},
Sqlite(String),
}Expand description
Typed failures for snapshot import.
Variants§
Trait Implementations§
Source§impl Clone for SnapshotImportError
impl Clone for SnapshotImportError
Source§fn clone(&self) -> SnapshotImportError
fn clone(&self) -> SnapshotImportError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SnapshotImportError
impl Debug for SnapshotImportError
Auto Trait Implementations§
impl Freeze for SnapshotImportError
impl RefUnwindSafe for SnapshotImportError
impl Send for SnapshotImportError
impl Sync for SnapshotImportError
impl Unpin for SnapshotImportError
impl UnsafeUnpin for SnapshotImportError
impl UnwindSafe for SnapshotImportError
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