pub type Result<T> = Result<T, ClaudeError>;
pub enum Result<T> { Ok(T), Err(ClaudeError), }
Contains the success value
Contains the error value