pub struct ValidateExecutorConfig {
pub enable_ai_validation: bool,
pub ai_validation_prompt: String,
pub abort_on_ai_failure: bool,
}Expand description
验证执行器配置
Fields§
§enable_ai_validation: bool是否启用 AI 验证
ai_validation_prompt: StringAI 验证提示模板
abort_on_ai_failure: bool是否在 AI 验证失败时中止
Trait Implementations§
Source§impl Clone for ValidateExecutorConfig
impl Clone for ValidateExecutorConfig
Source§fn clone(&self) -> ValidateExecutorConfig
fn clone(&self) -> ValidateExecutorConfig
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 ValidateExecutorConfig
impl Debug for ValidateExecutorConfig
Auto Trait Implementations§
impl Freeze for ValidateExecutorConfig
impl RefUnwindSafe for ValidateExecutorConfig
impl Send for ValidateExecutorConfig
impl Sync for ValidateExecutorConfig
impl Unpin for ValidateExecutorConfig
impl UnsafeUnpin for ValidateExecutorConfig
impl UnwindSafe for ValidateExecutorConfig
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