pub struct ClaudeInstallation {
pub path: String,
pub version: Option<String>,
pub source: String,
pub installation_type: InstallationType,
}Fields§
§path: String§version: Option<String>§source: String§installation_type: InstallationTypeTrait Implementations§
Source§impl Clone for ClaudeInstallation
impl Clone for ClaudeInstallation
Source§fn clone(&self) -> ClaudeInstallation
fn clone(&self) -> ClaudeInstallation
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 ClaudeInstallation
impl Debug for ClaudeInstallation
Source§impl<'de> Deserialize<'de> for ClaudeInstallation
impl<'de> Deserialize<'de> for ClaudeInstallation
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
Auto Trait Implementations§
impl Freeze for ClaudeInstallation
impl RefUnwindSafe for ClaudeInstallation
impl Send for ClaudeInstallation
impl Sync for ClaudeInstallation
impl Unpin for ClaudeInstallation
impl UnsafeUnpin for ClaudeInstallation
impl UnwindSafe for ClaudeInstallation
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