pub struct PromptAssemblyOutput {
pub effective_system_prompt: String,
pub skill_context: String,
pub tool_guide_context: String,
}Expand description
Result of prompt assembly.
Fields§
§effective_system_prompt: String§skill_context: String§tool_guide_context: StringTrait Implementations§
Source§impl Clone for PromptAssemblyOutput
impl Clone for PromptAssemblyOutput
Source§fn clone(&self) -> PromptAssemblyOutput
fn clone(&self) -> PromptAssemblyOutput
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 moreAuto Trait Implementations§
impl Freeze for PromptAssemblyOutput
impl RefUnwindSafe for PromptAssemblyOutput
impl Send for PromptAssemblyOutput
impl Sync for PromptAssemblyOutput
impl Unpin for PromptAssemblyOutput
impl UnsafeUnpin for PromptAssemblyOutput
impl UnwindSafe for PromptAssemblyOutput
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