pub struct ResumeOptions {
pub session_id: String,
pub cwd: Option<PathBuf>,
}Expand description
Options for claude-cli agent resume.
Fields§
§session_id: StringThe Claude session id to resume.
cwd: Option<PathBuf>Optional explicit working-directory override, bypassing auto-resolution for a repository that moved after the session was created.
Auto Trait Implementations§
impl Freeze for ResumeOptions
impl RefUnwindSafe for ResumeOptions
impl Send for ResumeOptions
impl Sync for ResumeOptions
impl Unpin for ResumeOptions
impl UnsafeUnpin for ResumeOptions
impl UnwindSafe for ResumeOptions
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