pub enum VacuumError {
Vacuum {
source: Error,
},
}Expand description
Errors specific to the vacuum tool.
Variants§
Vacuum
SQLite failed to execute the VACUUM command. This can happen if the database is locked by another connection or if there is insufficient disk space.
Trait Implementations§
Source§impl Debug for VacuumError
impl Debug for VacuumError
Source§impl Display for VacuumError
impl Display for VacuumError
Source§impl Error for VacuumError
impl Error for VacuumError
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 IntoContents for VacuumError
Converts the vacuum-specific error into MCP content by rendering the display
string as text.
impl IntoContents for VacuumError
Converts the vacuum-specific error into MCP content by rendering the display string as text.
Auto Trait Implementations§
impl Freeze for VacuumError
impl !RefUnwindSafe for VacuumError
impl Send for VacuumError
impl Sync for VacuumError
impl Unpin for VacuumError
impl UnsafeUnpin for VacuumError
impl !UnwindSafe for VacuumError
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