pub enum DatabaseError {
ConnectionFailed {
reason: String,
},
CorruptionDetected {
location: String,
},
MigrationFailed {
from: u32,
to: u32,
reason: String,
},
LockTimeout {
seconds: u64,
},
InsufficientDiskSpace {
required_mb: u64,
available_mb: u64,
},
BackupFailed {
reason: String,
},
RestoreFailed {
reason: String,
},
QueryFailed {
query: String,
reason: String,
},
}Expand description
Database-related error types with recovery strategies
Variants§
ConnectionFailed
CorruptionDetected
MigrationFailed
LockTimeout
InsufficientDiskSpace
BackupFailed
RestoreFailed
QueryFailed
Implementations§
Source§impl DatabaseError
impl DatabaseError
pub fn recovery_strategy(&self) -> &'static str
pub fn is_recoverable(&self) -> bool
pub fn recovery_actions(&self) -> Vec<String>
Trait Implementations§
Source§impl Debug for DatabaseError
impl Debug for DatabaseError
Source§impl Display for DatabaseError
impl Display for DatabaseError
Source§impl Error for DatabaseError
impl Error for DatabaseError
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<DatabaseError> for AppError
impl From<DatabaseError> for AppError
Source§fn from(source: DatabaseError) -> Self
fn from(source: DatabaseError) -> Self
Converts to this type from the input type.
Source§impl From<DatabaseError> for PlatformError
impl From<DatabaseError> for PlatformError
Source§fn from(source: DatabaseError) -> Self
fn from(source: DatabaseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DatabaseError
impl RefUnwindSafe for DatabaseError
impl Send for DatabaseError
impl Sync for DatabaseError
impl Unpin for DatabaseError
impl UnwindSafe for DatabaseError
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.