pub struct LaunchSpec<'a> {
pub launch: Launch,
pub prompt_file: &'a Path,
pub deep: bool,
}Expand description
Everything a verb template needs bound to become a command line: which
launch this is, the prompt file written for it, and whether the task earns
the deeper model. Assembled by the caller that wrote the prompt, rendered by
ResolvedAgent::launch_command or
ResolvedAgent::plan_launch_command.
Fields§
§launch: Launch§prompt_file: &'a Path§deep: boolWhether the task carries the deep flag; ignored by the plan template,
which has no depth to read.
Trait Implementations§
Source§impl<'a> Clone for LaunchSpec<'a>
impl<'a> Clone for LaunchSpec<'a>
Source§fn clone(&self) -> LaunchSpec<'a>
fn clone(&self) -> LaunchSpec<'a>
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<'a> Freeze for LaunchSpec<'a>
impl<'a> RefUnwindSafe for LaunchSpec<'a>
impl<'a> Send for LaunchSpec<'a>
impl<'a> Sync for LaunchSpec<'a>
impl<'a> Unpin for LaunchSpec<'a>
impl<'a> UnsafeUnpin for LaunchSpec<'a>
impl<'a> UnwindSafe for LaunchSpec<'a>
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