pub struct AgentWrapperRunRequest {
pub prompt: String,
pub working_dir: Option<PathBuf>,
pub timeout: Option<Duration>,
pub env: BTreeMap<String, String>,
pub extensions: BTreeMap<String, Value>,
}Fields§
§prompt: String§working_dir: Option<PathBuf>§timeout: Option<Duration>§env: BTreeMap<String, String>§extensions: BTreeMap<String, Value>Extension options are namespaced keys with JSON values.
Trait Implementations§
Source§impl Clone for AgentWrapperRunRequest
impl Clone for AgentWrapperRunRequest
Source§fn clone(&self) -> AgentWrapperRunRequest
fn clone(&self) -> AgentWrapperRunRequest
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 AgentWrapperRunRequest
impl Debug for AgentWrapperRunRequest
Source§impl Default for AgentWrapperRunRequest
impl Default for AgentWrapperRunRequest
Source§fn default() -> AgentWrapperRunRequest
fn default() -> AgentWrapperRunRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AgentWrapperRunRequest
impl RefUnwindSafe for AgentWrapperRunRequest
impl Send for AgentWrapperRunRequest
impl Sync for AgentWrapperRunRequest
impl Unpin for AgentWrapperRunRequest
impl UnsafeUnpin for AgentWrapperRunRequest
impl UnwindSafe for AgentWrapperRunRequest
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