pub struct TeamConfig {
pub max_tasks: usize,
pub channel_buffer: usize,
pub max_rounds: usize,
pub poll_interval_ms: u64,
}Expand description
Team configuration.
Fields§
§max_tasks: usizeMaximum concurrent tasks on the board. Default: 50
channel_buffer: usizeMessage channel buffer size. Default: 128
max_rounds: usizeMaximum coordination rounds before run_until_done exits.
Default: 10
poll_interval_ms: u64Worker/Reviewer polling interval in milliseconds. Default: 200
Trait Implementations§
Source§impl Clone for TeamConfig
impl Clone for TeamConfig
Source§fn clone(&self) -> TeamConfig
fn clone(&self) -> TeamConfig
Returns a duplicate of the value. Read more
1.0.0 · 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 TeamConfig
impl Debug for TeamConfig
Auto Trait Implementations§
impl Freeze for TeamConfig
impl RefUnwindSafe for TeamConfig
impl Send for TeamConfig
impl Sync for TeamConfig
impl Unpin for TeamConfig
impl UnsafeUnpin for TeamConfig
impl UnwindSafe for TeamConfig
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