pub struct OrchestratorConfig {
pub event_buffer_size: usize,
pub control_buffer_size: usize,
pub max_concurrent_subagents: usize,
pub subject_prefix: String,
}Expand description
Orchestrator 配置
Fields§
§event_buffer_size: usize事件通道缓冲区大小
control_buffer_size: usize控制信号通道缓冲区大小
max_concurrent_subagents: usizeSubAgent 最大并发数
subject_prefix: String事件主题前缀
Trait Implementations§
Source§impl Clone for OrchestratorConfig
impl Clone for OrchestratorConfig
Source§fn clone(&self) -> OrchestratorConfig
fn clone(&self) -> OrchestratorConfig
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 OrchestratorConfig
impl Debug for OrchestratorConfig
Auto Trait Implementations§
impl Freeze for OrchestratorConfig
impl RefUnwindSafe for OrchestratorConfig
impl Send for OrchestratorConfig
impl Sync for OrchestratorConfig
impl Unpin for OrchestratorConfig
impl UnsafeUnpin for OrchestratorConfig
impl UnwindSafe for OrchestratorConfig
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