pub struct CliNotFoundError {
pub message: String,
pub cli_path: Option<PathBuf>,
}Expand description
Error when Claude Code CLI cannot be found
Fields§
§message: StringError message
cli_path: Option<PathBuf>Path that was checked
Implementations§
Trait Implementations§
Source§impl Debug for CliNotFoundError
impl Debug for CliNotFoundError
Source§impl Display for CliNotFoundError
impl Display for CliNotFoundError
Source§impl Error for CliNotFoundError
impl Error for CliNotFoundError
1.30.0 · 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 From<CliNotFoundError> for ClaudeError
impl From<CliNotFoundError> for ClaudeError
Source§fn from(source: CliNotFoundError) -> Self
fn from(source: CliNotFoundError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CliNotFoundError
impl RefUnwindSafe for CliNotFoundError
impl Send for CliNotFoundError
impl Sync for CliNotFoundError
impl Unpin for CliNotFoundError
impl UnwindSafe for CliNotFoundError
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