pub struct LoopLimits {
pub max_tool_actions: usize,
pub max_concurrent_executions: usize,
pub max_queued_ready: usize,
pub max_output_queue: usize,
pub max_dedup_entries: usize,
}Expand description
Aggregate Loop bounds.
Fields§
§max_tool_actions: usizeMaximum tracked tool actions.
max_concurrent_executions: usizeMaximum concurrent tool executions.
max_queued_ready: usizeMaximum queued ready requests.
max_output_queue: usizeMaximum output queue items.
max_dedup_entries: usizeMaximum deduplication table entries.
Trait Implementations§
Source§impl Clone for LoopLimits
impl Clone for LoopLimits
Source§fn clone(&self) -> LoopLimits
fn clone(&self) -> LoopLimits
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 LoopLimits
impl Debug for LoopLimits
Auto Trait Implementations§
impl Freeze for LoopLimits
impl RefUnwindSafe for LoopLimits
impl Send for LoopLimits
impl Sync for LoopLimits
impl Unpin for LoopLimits
impl UnsafeUnpin for LoopLimits
impl UnwindSafe for LoopLimits
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