pub struct TeamConfig {
pub max_tasks: usize,
pub channel_buffer: usize,
}Expand description
Team configuration.
Fields§
§max_tasks: usizeMaximum concurrent tasks on the board. Default: 50
channel_buffer: usizeMessage channel buffer size. Default: 128
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