pub struct ClaudeAgentOptions {
pub runtime_id: Option<RuntimeInstanceId>,
pub workspace_id: Option<WorkspaceId>,
pub conversation_id: Option<ConversationId>,
pub downstream_model: Option<String>,
pub deadline_seconds: Option<u64>,
pub max_model_turns: Option<usize>,
pub max_tool_calls: Option<usize>,
}Fields§
§runtime_id: Option<RuntimeInstanceId>§workspace_id: Option<WorkspaceId>§conversation_id: Option<ConversationId>§downstream_model: Option<String>§deadline_seconds: Option<u64>§max_model_turns: Option<usize>§max_tool_calls: Option<usize>Trait Implementations§
Source§impl Clone for ClaudeAgentOptions
impl Clone for ClaudeAgentOptions
Source§fn clone(&self) -> ClaudeAgentOptions
fn clone(&self) -> ClaudeAgentOptions
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 ClaudeAgentOptions
impl Debug for ClaudeAgentOptions
Source§impl<'de> Deserialize<'de> for ClaudeAgentOptions
impl<'de> Deserialize<'de> for ClaudeAgentOptions
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
Source§impl PartialEq for ClaudeAgentOptions
impl PartialEq for ClaudeAgentOptions
Source§impl Serialize for ClaudeAgentOptions
impl Serialize for ClaudeAgentOptions
impl StructuralPartialEq for ClaudeAgentOptions
Auto Trait Implementations§
impl Freeze for ClaudeAgentOptions
impl RefUnwindSafe for ClaudeAgentOptions
impl Send for ClaudeAgentOptions
impl Sync for ClaudeAgentOptions
impl Unpin for ClaudeAgentOptions
impl UnsafeUnpin for ClaudeAgentOptions
impl UnwindSafe for ClaudeAgentOptions
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