pub struct ResolvedAgentConfig {
pub cmd: String,
pub config_dir: PathBuf,
}Expand description
Runtime-ready agent configuration resolved from root config.toml.
Fields§
§cmd: StringCommand used to launch the agent.
config_dir: PathBufDestination directory copied during apg init --agent <id>.
Trait Implementations§
Source§impl Clone for ResolvedAgentConfig
impl Clone for ResolvedAgentConfig
Source§fn clone(&self) -> ResolvedAgentConfig
fn clone(&self) -> ResolvedAgentConfig
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 ResolvedAgentConfig
impl Debug for ResolvedAgentConfig
Source§impl PartialEq for ResolvedAgentConfig
impl PartialEq for ResolvedAgentConfig
impl Eq for ResolvedAgentConfig
impl StructuralPartialEq for ResolvedAgentConfig
Auto Trait Implementations§
impl Freeze for ResolvedAgentConfig
impl RefUnwindSafe for ResolvedAgentConfig
impl Send for ResolvedAgentConfig
impl Sync for ResolvedAgentConfig
impl Unpin for ResolvedAgentConfig
impl UnsafeUnpin for ResolvedAgentConfig
impl UnwindSafe for ResolvedAgentConfig
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