pub enum CreateFtsIndexError {
NoColumns,
Create {
source: Error,
},
}Expand description
Errors specific to the create_fts_index tool.
Variants§
NoColumns
No columns were specified for the full-text index.
Create
SQLite failed to create the FTS virtual table.
Trait Implementations§
Source§impl Debug for CreateFtsIndexError
impl Debug for CreateFtsIndexError
Source§impl Display for CreateFtsIndexError
impl Display for CreateFtsIndexError
Source§impl Error for CreateFtsIndexError
impl Error for CreateFtsIndexError
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 CreateFtsIndexError
Converts the error into MCP content by rendering the display string as text.
impl IntoContents for CreateFtsIndexError
Converts the error into MCP content by rendering the display string as text.
Auto Trait Implementations§
impl Freeze for CreateFtsIndexError
impl !RefUnwindSafe for CreateFtsIndexError
impl Send for CreateFtsIndexError
impl Sync for CreateFtsIndexError
impl Unpin for CreateFtsIndexError
impl UnsafeUnpin for CreateFtsIndexError
impl !UnwindSafe for CreateFtsIndexError
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