pub struct ConversationSection {
pub resume_exec_template: String,
}Expand description
Native same-session continuation for scripted multi-turn evals.
Fields§
§resume_exec_template: StringCommand template for one follow-up turn. The driver fills
{session_arg} and {prompt_arg} with shell-quoted values and the
usual angle-bracket paths with task-local destinations.
Trait Implementations§
Source§impl Clone for ConversationSection
impl Clone for ConversationSection
Source§fn clone(&self) -> ConversationSection
fn clone(&self) -> ConversationSection
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 moreSource§impl Debug for ConversationSection
impl Debug for ConversationSection
Source§impl<'de> Deserialize<'de> for ConversationSection
impl<'de> Deserialize<'de> for ConversationSection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConversationSection
impl RefUnwindSafe for ConversationSection
impl Send for ConversationSection
impl Sync for ConversationSection
impl Unpin for ConversationSection
impl UnsafeUnpin for ConversationSection
impl UnwindSafe for ConversationSection
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