pub struct SubmitToolOutputsRunRequest_ToolOutputs {
pub tool_call_id: Option<String>,
pub output: Option<String>,
}
Fields§
§tool_call_id: Option<String>
The ID of the tool call in the required_action
object within the run
object the output is being submitted for.
output: Option<String>
The output of the tool call to be submitted to continue the run.
Trait Implementations§
Source§impl Clone for SubmitToolOutputsRunRequest_ToolOutputs
impl Clone for SubmitToolOutputsRunRequest_ToolOutputs
Source§fn clone(&self) -> SubmitToolOutputsRunRequest_ToolOutputs
fn clone(&self) -> SubmitToolOutputsRunRequest_ToolOutputs
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 Default for SubmitToolOutputsRunRequest_ToolOutputs
impl Default for SubmitToolOutputsRunRequest_ToolOutputs
Source§fn default() -> SubmitToolOutputsRunRequest_ToolOutputs
fn default() -> SubmitToolOutputsRunRequest_ToolOutputs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SubmitToolOutputsRunRequest_ToolOutputs
impl RefUnwindSafe for SubmitToolOutputsRunRequest_ToolOutputs
impl Send for SubmitToolOutputsRunRequest_ToolOutputs
impl Sync for SubmitToolOutputsRunRequest_ToolOutputs
impl Unpin for SubmitToolOutputsRunRequest_ToolOutputs
impl UnwindSafe for SubmitToolOutputsRunRequest_ToolOutputs
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