pub struct UpdateSubagentSettingsRequestSubagents {
pub agents: Option<HashMap<String, SubagentSettingsEntry>>,
pub disabled_subagents: Option<Vec<String>>,
pub max_concurrency: Option<i32>,
pub max_depth: Option<i32>,
}Expand description
Configured per-agent subagent overrides
Fields§
§agents: Option<HashMap<String, SubagentSettingsEntry>>Per-agent settings keyed by subagent agent_type
disabled_subagents: Option<Vec<String>>Names of subagents the user has turned off; they cannot be dispatched
max_concurrency: Option<i32>Maximum number of subagents that can run concurrently; applies to usage-based billing users only
max_depth: Option<i32>Maximum subagent nesting depth; applies to usage-based billing users only
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UpdateSubagentSettingsRequestSubagents
impl<'de> Deserialize<'de> for UpdateSubagentSettingsRequestSubagents
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UpdateSubagentSettingsRequestSubagents
impl RefUnwindSafe for UpdateSubagentSettingsRequestSubagents
impl Send for UpdateSubagentSettingsRequestSubagents
impl Sync for UpdateSubagentSettingsRequestSubagents
impl Unpin for UpdateSubagentSettingsRequestSubagents
impl UnsafeUnpin for UpdateSubagentSettingsRequestSubagents
impl UnwindSafe for UpdateSubagentSettingsRequestSubagents
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