Enum redb::SavepointError
source · #[non_exhaustive]pub enum SavepointError {
InvalidSavepoint,
Storage(StorageError),
}
Expand description
Errors related to savepoints
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
InvalidSavepoint
This savepoint is invalid or cannot be created.
Savepoints become invalid when an older savepoint is restored after it was created, and savepoints cannot be created if the transaction is “dirty” (any tables have been opened)
Storage(StorageError)
Error from underlying storage
Trait Implementations§
source§impl Debug for SavepointError
impl Debug for SavepointError
source§impl Display for SavepointError
impl Display for SavepointError
source§impl Error for SavepointError
impl Error for SavepointError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<SavepointError> for Error
impl From<SavepointError> for Error
source§fn from(err: SavepointError) -> Error
fn from(err: SavepointError) -> Error
Converts to this type from the input type.
source§impl From<StorageError> for SavepointError
impl From<StorageError> for SavepointError
source§fn from(err: StorageError) -> SavepointError
fn from(err: StorageError) -> SavepointError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SavepointError
impl !RefUnwindSafe for SavepointError
impl Send for SavepointError
impl Sync for SavepointError
impl Unpin for SavepointError
impl !UnwindSafe for SavepointError
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