pub enum HostKind {
Auto,
ClaudeCode,
Codex,
Gemini,
}Expand description
Host classification driving which path-resolver arm to use.
Variants§
Auto
Walk every supported host’s candidate set and pick the transcript with the most recent mtime. Default for the CLI subcommand + MCP tool.
ClaudeCode
Anthropic Claude Code — JSONL per turn under
~/.claude/projects/-<cwd-encoded>/*.jsonl.
Codex
OpenAI Codex CLI — transcript layout subject to per-version
drift; the resolver attempts the documented locations and
surfaces a not-found error path under auto.
Gemini
Google Gemini CLI — same shape as Codex; layout to be confirmed per the v0.7.0 #1389 implementation slice.
Implementations§
Trait Implementations§
impl Copy for HostKind
Source§impl<'de> Deserialize<'de> for HostKind
impl<'de> Deserialize<'de> for HostKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for HostKind
impl StructuralPartialEq for HostKind
Auto Trait Implementations§
impl Freeze for HostKind
impl RefUnwindSafe for HostKind
impl Send for HostKind
impl Sync for HostKind
impl Unpin for HostKind
impl UnsafeUnpin for HostKind
impl UnwindSafe for HostKind
Blanket Implementations§
impl<T> Boilerplate for T
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> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.impl<T> ErasedDestructor for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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