pub struct TurnLoopConfigView<'a> {
pub compaction: &'a CompactionConfig,
pub strict_tool_mode: bool,
pub scratchpad: &'a ScratchpadConfig,
pub workspace: &'a Path,
}Expand description
Config slices the turn loop reads each step (avoids pulling full EngineConfig into core yet).
Fields§
§compaction: &'a CompactionConfig§strict_tool_mode: bool§scratchpad: &'a ScratchpadConfig§workspace: &'a PathTrait Implementations§
Source§impl<'a> Clone for TurnLoopConfigView<'a>
impl<'a> Clone for TurnLoopConfigView<'a>
Source§fn clone(&self) -> TurnLoopConfigView<'a>
fn clone(&self) -> TurnLoopConfigView<'a>
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 moreimpl<'a> Copy for TurnLoopConfigView<'a>
Auto Trait Implementations§
impl<'a> Freeze for TurnLoopConfigView<'a>
impl<'a> RefUnwindSafe for TurnLoopConfigView<'a>
impl<'a> Send for TurnLoopConfigView<'a>
impl<'a> Sync for TurnLoopConfigView<'a>
impl<'a> Unpin for TurnLoopConfigView<'a>
impl<'a> UnsafeUnpin for TurnLoopConfigView<'a>
impl<'a> UnwindSafe for TurnLoopConfigView<'a>
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