pub struct SubagentSettingsEntry {
pub context_tier: Option<SubagentSettingsEntryContextTier>,
pub effort_level: Option<String>,
pub model: Option<String>,
}Expand description
Subagent model, reasoning effort, and context tier settings
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§context_tier: Option<SubagentSettingsEntryContextTier>Context tier override for matching subagents
effort_level: Option<String>Reasoning effort override for matching subagents
model: Option<String>Model override for matching subagents
Trait Implementations§
Source§impl Clone for SubagentSettingsEntry
impl Clone for SubagentSettingsEntry
Source§fn clone(&self) -> SubagentSettingsEntry
fn clone(&self) -> SubagentSettingsEntry
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 SubagentSettingsEntry
impl Debug for SubagentSettingsEntry
Source§impl Default for SubagentSettingsEntry
impl Default for SubagentSettingsEntry
Source§fn default() -> SubagentSettingsEntry
fn default() -> SubagentSettingsEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SubagentSettingsEntry
impl<'de> Deserialize<'de> for SubagentSettingsEntry
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 SubagentSettingsEntry
impl RefUnwindSafe for SubagentSettingsEntry
impl Send for SubagentSettingsEntry
impl Sync for SubagentSettingsEntry
impl Unpin for SubagentSettingsEntry
impl UnsafeUnpin for SubagentSettingsEntry
impl UnwindSafe for SubagentSettingsEntry
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