pub struct ClaudeCodeConnector;Expand description
Claude Code connector (wraps existing parser)
Trait Implementations§
Source§impl Debug for ClaudeCodeConnector
impl Debug for ClaudeCodeConnector
Source§impl Default for ClaudeCodeConnector
impl Default for ClaudeCodeConnector
Source§fn default() -> ClaudeCodeConnector
fn default() -> ClaudeCodeConnector
Returns the “default value” for a type. Read more
Source§impl SessionConnector for ClaudeCodeConnector
impl SessionConnector for ClaudeCodeConnector
Source§fn display_name(&self) -> &str
fn display_name(&self) -> &str
Human-readable name
Source§fn detect(&self) -> ConnectorStatus
fn detect(&self) -> ConnectorStatus
Check if this connector’s data source is available
Source§fn default_path(&self) -> Option<PathBuf>
fn default_path(&self) -> Option<PathBuf>
Get the default data path for this connector
Source§fn import(&self, options: &ImportOptions) -> Result<Vec<NormalizedSession>>
fn import(&self, options: &ImportOptions) -> Result<Vec<NormalizedSession>>
Import sessions from this source
Auto Trait Implementations§
impl Freeze for ClaudeCodeConnector
impl RefUnwindSafe for ClaudeCodeConnector
impl Send for ClaudeCodeConnector
impl Sync for ClaudeCodeConnector
impl Unpin for ClaudeCodeConnector
impl UnsafeUnpin for ClaudeCodeConnector
impl UnwindSafe for ClaudeCodeConnector
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> 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