pub struct ResumeSessionOptions {
pub transcript_path: Option<String>,
pub cwd: Option<String>,
pub env: BTreeMap<String, String>,
}Expand description
Options for resume_session. Mirrors the durability-dependent fields the
sidecar fallback tier needs to re-launch the adapter, plus the transcript
pointer.
Fields§
§transcript_path: Option<String>Guest-readable path to the reconstructed transcript. When present, the fallback tier arms a continuation preamble pointing the agent at it.
cwd: Option<String>Default "/workspace".
env: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for ResumeSessionOptions
impl Clone for ResumeSessionOptions
Source§fn clone(&self) -> ResumeSessionOptions
fn clone(&self) -> ResumeSessionOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResumeSessionOptions
impl Debug for ResumeSessionOptions
Source§impl Default for ResumeSessionOptions
impl Default for ResumeSessionOptions
Source§fn default() -> ResumeSessionOptions
fn default() -> ResumeSessionOptions
Returns the “default value” for a type. Read more
impl Eq for ResumeSessionOptions
Source§impl PartialEq for ResumeSessionOptions
impl PartialEq for ResumeSessionOptions
impl StructuralPartialEq for ResumeSessionOptions
Auto Trait Implementations§
impl Freeze for ResumeSessionOptions
impl RefUnwindSafe for ResumeSessionOptions
impl Send for ResumeSessionOptions
impl Sync for ResumeSessionOptions
impl Unpin for ResumeSessionOptions
impl UnsafeUnpin for ResumeSessionOptions
impl UnwindSafe for ResumeSessionOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compares
self to key and returns true if they are equal.