pub(crate) enum AgentErrorKind {
Error,
InitRequired,
WorktreeRequired,
RefreshRequired,
VerificationIncomplete,
ProjectMismatch,
DatabaseFilesystemUnsupported,
DatabaseFilesystemUncertain,
SchemaVersionMismatch,
SchemaMigrationRequired,
UnsupportedContainment,
SearchCapabilityUnavailable,
}Expand description
Stable error kinds shared by CLI and MCP agent payloads.
Variants§
Error
General command, input, storage, or service failure.
InitRequired
The selected project root needs explicit initialization.
WorktreeRequired
A checked-out source worktree must be selected.
RefreshRequired
Current saved local source differs from the durable index.
VerificationIncomplete
Current saved local source could not be inspected completely.
ProjectMismatch
The selected project root does not own the opened index.
DatabaseFilesystemUnsupported
The database is on a known unsupported network or distributed filesystem.
DatabaseFilesystemUncertain
The database’s required local filesystem guarantees could not be established.
SchemaVersionMismatch
The selected database schema is unsupported by this runtime.
SchemaMigrationRequired
The selected database schema has a supported migration route.
UnsupportedContainment
The host has no accepted optional parser containment adapter.
The requested optional search mode has no ready generation.
Trait Implementations§
Source§impl Clone for AgentErrorKind
impl Clone for AgentErrorKind
Source§fn clone(&self) -> AgentErrorKind
fn clone(&self) -> AgentErrorKind
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreimpl Copy for AgentErrorKind
Source§impl Debug for AgentErrorKind
impl Debug for AgentErrorKind
Auto Trait Implementations§
impl Freeze for AgentErrorKind
impl RefUnwindSafe for AgentErrorKind
impl Send for AgentErrorKind
impl Sync for AgentErrorKind
impl Unpin for AgentErrorKind
impl UnsafeUnpin for AgentErrorKind
impl UnwindSafe for AgentErrorKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more