pub struct WslOptions {
pub distro: Option<String>,
pub claude_path: Option<String>,
}Expand description
Configuration options for WSL execution
Fields§
§distro: Option<String>Optional specific WSL distro to use (e.g., “Ubuntu-22.04”)
claude_path: Option<String>Optional absolute path to claude binary in WSL (defaults to “claude”)
Trait Implementations§
Source§impl Clone for WslOptions
impl Clone for WslOptions
Source§fn clone(&self) -> WslOptions
fn clone(&self) -> WslOptions
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 WslOptions
impl Debug for WslOptions
Source§impl Default for WslOptions
impl Default for WslOptions
Source§fn default() -> WslOptions
fn default() -> WslOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for WslOptions
impl RefUnwindSafe for WslOptions
impl Send for WslOptions
impl Sync for WslOptions
impl Unpin for WslOptions
impl UnsafeUnpin for WslOptions
impl UnwindSafe for WslOptions
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