pub enum ExecuteError {
Prepare {
source: Error,
},
Query {
source: Error,
},
}Expand description
Errors specific to the execute tool’s query preparation and result reading
logic.
Variants§
Prepare
SQLite failed to prepare the statement. This usually means the SQL is syntactically invalid or references a table/column that does not exist.
Query
The query executed but an error occurred while reading a result row.
Trait Implementations§
Source§impl Debug for ExecuteError
impl Debug for ExecuteError
Source§impl Display for ExecuteError
impl Display for ExecuteError
Source§impl Error for ExecuteError
impl Error for ExecuteError
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 ExecuteError
Converts the execute-specific error into MCP content by rendering the
display string as text.
impl IntoContents for ExecuteError
Converts the execute-specific error into MCP content by rendering the display string as text.
Auto Trait Implementations§
impl Freeze for ExecuteError
impl !RefUnwindSafe for ExecuteError
impl Send for ExecuteError
impl Sync for ExecuteError
impl Unpin for ExecuteError
impl UnsafeUnpin for ExecuteError
impl !UnwindSafe for ExecuteError
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