pub struct BuildSystemPromptOptions {
pub language: String,
pub allow_interruption: bool,
pub use_workspace: bool,
pub enable_todo_management: bool,
pub agent_type: Option<String>,
pub available_sub_agents: BTreeMap<String, String>,
pub available_skills: Option<Value>,
pub workspace: Option<PathBuf>,
pub current_time_utc: Option<String>,
pub session_memory_context: String,
}Fields§
§language: String§allow_interruption: bool§use_workspace: bool§enable_todo_management: bool§agent_type: Option<String>§available_sub_agents: BTreeMap<String, String>§available_skills: Option<Value>§workspace: Option<PathBuf>§current_time_utc: Option<String>§session_memory_context: StringTrait Implementations§
Source§impl Clone for BuildSystemPromptOptions
impl Clone for BuildSystemPromptOptions
Source§fn clone(&self) -> BuildSystemPromptOptions
fn clone(&self) -> BuildSystemPromptOptions
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 BuildSystemPromptOptions
impl RefUnwindSafe for BuildSystemPromptOptions
impl Send for BuildSystemPromptOptions
impl Sync for BuildSystemPromptOptions
impl Unpin for BuildSystemPromptOptions
impl UnsafeUnpin for BuildSystemPromptOptions
impl UnwindSafe for BuildSystemPromptOptions
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.