pub enum ListTriggersError {
Query {
source: Error,
},
}Expand description
Errors specific to the list_triggers tool.
Variants§
Query
Failed to query sqlite_master for the trigger list.
Trait Implementations§
Source§impl Debug for ListTriggersError
impl Debug for ListTriggersError
Source§impl Display for ListTriggersError
impl Display for ListTriggersError
Source§impl Error for ListTriggersError
impl Error for ListTriggersError
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 ListTriggersError
Converts the list-triggers-specific error into MCP content by rendering the
display string as text.
impl IntoContents for ListTriggersError
Converts the list-triggers-specific error into MCP content by rendering the display string as text.
Auto Trait Implementations§
impl Freeze for ListTriggersError
impl !RefUnwindSafe for ListTriggersError
impl Send for ListTriggersError
impl Sync for ListTriggersError
impl Unpin for ListTriggersError
impl UnsafeUnpin for ListTriggersError
impl !UnwindSafe for ListTriggersError
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