pub struct ThreadStartResponse {
pub approval_policy: AskForApproval,
pub approvals_reviewer: Value,
pub cwd: AbsolutePathBuf,
pub instruction_sources: Option<Vec<AbsolutePathBuf>>,
pub model: String,
pub model_provider: String,
pub reasoning_effort: Option<ReasoningEffort>,
pub sandbox: Value,
pub service_tier: Option<String>,
pub thread: Thread,
}Fields§
§approval_policy: AskForApproval§approvals_reviewer: Value§cwd: AbsolutePathBuf§instruction_sources: Option<Vec<AbsolutePathBuf>>§model: String§model_provider: String§reasoning_effort: Option<ReasoningEffort>§sandbox: Value§service_tier: Option<String>§thread: ThreadTrait Implementations§
Source§impl Clone for ThreadStartResponse
impl Clone for ThreadStartResponse
Source§fn clone(&self) -> ThreadStartResponse
fn clone(&self) -> ThreadStartResponse
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 ThreadStartResponse
impl Debug for ThreadStartResponse
Source§impl<'de> Deserialize<'de> for ThreadStartResponse
impl<'de> Deserialize<'de> for ThreadStartResponse
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 ThreadStartResponse
impl PartialEq for ThreadStartResponse
Source§fn eq(&self, other: &ThreadStartResponse) -> bool
fn eq(&self, other: &ThreadStartResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ThreadStartResponse
impl Serialize for ThreadStartResponse
impl StructuralPartialEq for ThreadStartResponse
Auto Trait Implementations§
impl Freeze for ThreadStartResponse
impl RefUnwindSafe for ThreadStartResponse
impl Send for ThreadStartResponse
impl Sync for ThreadStartResponse
impl Unpin for ThreadStartResponse
impl UnsafeUnpin for ThreadStartResponse
impl UnwindSafe for ThreadStartResponse
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