pub struct SubmitToolOutputsRunRequestWithoutStreamToolOutputs {
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.
Implementations§
Source§impl SubmitToolOutputsRunRequestWithoutStreamToolOutputs
impl SubmitToolOutputsRunRequestWithoutStreamToolOutputs
Sourcepub fn builder() -> SubmitToolOutputsRunRequestWithoutStreamToolOutputsBuilder<((), ())>
pub fn builder() -> SubmitToolOutputsRunRequestWithoutStreamToolOutputsBuilder<((), ())>
Create a builder for building SubmitToolOutputsRunRequestWithoutStreamToolOutputs
.
On the builder, call .tool_call_id(...)
(optional), .output(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of SubmitToolOutputsRunRequestWithoutStreamToolOutputs
.
Trait Implementations§
Source§impl Clone for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
impl Clone for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
Source§fn clone(&self) -> SubmitToolOutputsRunRequestWithoutStreamToolOutputs
fn clone(&self) -> SubmitToolOutputsRunRequestWithoutStreamToolOutputs
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 SubmitToolOutputsRunRequestWithoutStreamToolOutputs
impl Default for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
Source§fn default() -> SubmitToolOutputsRunRequestWithoutStreamToolOutputs
fn default() -> SubmitToolOutputsRunRequestWithoutStreamToolOutputs
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
impl<'de> Deserialize<'de> for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
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 SubmitToolOutputsRunRequestWithoutStreamToolOutputs
impl PartialEq for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
Source§fn eq(
&self,
other: &SubmitToolOutputsRunRequestWithoutStreamToolOutputs,
) -> bool
fn eq( &self, other: &SubmitToolOutputsRunRequestWithoutStreamToolOutputs, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
Auto Trait Implementations§
impl Freeze for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
impl RefUnwindSafe for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
impl Send for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
impl Sync for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
impl Unpin for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
impl UnwindSafe for SubmitToolOutputsRunRequestWithoutStreamToolOutputs
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