pub struct AgentAdapterConfig {
pub command: String,
pub args: Vec<String>,
pub environment: Vec<(OsString, OsString)>,
}Fields§
§command: String§args: Vec<String>§environment: Vec<(OsString, OsString)>Environment for the nested process. SCV supplies an instance-private home.
Trait Implementations§
Source§impl Clone for AgentAdapterConfig
impl Clone for AgentAdapterConfig
Source§fn clone(&self) -> AgentAdapterConfig
fn clone(&self) -> AgentAdapterConfig
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 moreAuto Trait Implementations§
impl Freeze for AgentAdapterConfig
impl RefUnwindSafe for AgentAdapterConfig
impl Send for AgentAdapterConfig
impl Sync for AgentAdapterConfig
impl Unpin for AgentAdapterConfig
impl UnsafeUnpin for AgentAdapterConfig
impl UnwindSafe for AgentAdapterConfig
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