pub(crate) enum AgentErrorKind {
Error,
InitRequired,
WorktreeRequired,
RefreshRequired,
VerificationIncomplete,
ProjectMismatch,
DatabaseFilesystemUnsupported,
DatabaseFilesystemUncertain,
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.
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
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AgentErrorKind
impl Debug for AgentErrorKind
Source§impl Serialize for AgentErrorKind
impl Serialize for AgentErrorKind
impl Copy 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 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
Mutably borrows from an owned value. Read more
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>
Converts
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>
Converts
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