pub struct QueryEngineConfig {
pub max_turns: Option<usize>,
pub verbose: bool,
pub unattended: bool,
}Expand description
Configuration for the query engine.
Fields§
§max_turns: Option<usize>§verbose: bool§unattended: boolWhether this is a non-interactive (one-shot) session.
Auto Trait Implementations§
impl Freeze for QueryEngineConfig
impl RefUnwindSafe for QueryEngineConfig
impl Send for QueryEngineConfig
impl Sync for QueryEngineConfig
impl Unpin for QueryEngineConfig
impl UnsafeUnpin for QueryEngineConfig
impl UnwindSafe for QueryEngineConfig
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