pub struct SubmitToolOutputsRunRequestWithoutStream {
pub tool_outputs: Vec<SubmitToolOutputsRunRequestWithoutStreamToolOutputs>,
}
Fields§
§tool_outputs: Vec<SubmitToolOutputsRunRequestWithoutStreamToolOutputs>
A list of tools for which the outputs are being submitted.
Implementations§
Source§impl SubmitToolOutputsRunRequestWithoutStream
impl SubmitToolOutputsRunRequestWithoutStream
Sourcepub fn builder() -> SubmitToolOutputsRunRequestWithoutStreamBuilder<((),)>
pub fn builder() -> SubmitToolOutputsRunRequestWithoutStreamBuilder<((),)>
Create a builder for building SubmitToolOutputsRunRequestWithoutStream
.
On the builder, call .tool_outputs(...)
to set the values of the fields.
Finally, call .build()
to create the instance of SubmitToolOutputsRunRequestWithoutStream
.
Trait Implementations§
Source§impl Clone for SubmitToolOutputsRunRequestWithoutStream
impl Clone for SubmitToolOutputsRunRequestWithoutStream
Source§fn clone(&self) -> SubmitToolOutputsRunRequestWithoutStream
fn clone(&self) -> SubmitToolOutputsRunRequestWithoutStream
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<'de> Deserialize<'de> for SubmitToolOutputsRunRequestWithoutStream
impl<'de> Deserialize<'de> for SubmitToolOutputsRunRequestWithoutStream
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 SubmitToolOutputsRunRequestWithoutStream
impl PartialEq for SubmitToolOutputsRunRequestWithoutStream
Source§fn eq(&self, other: &SubmitToolOutputsRunRequestWithoutStream) -> bool
fn eq(&self, other: &SubmitToolOutputsRunRequestWithoutStream) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SubmitToolOutputsRunRequestWithoutStream
Auto Trait Implementations§
impl Freeze for SubmitToolOutputsRunRequestWithoutStream
impl RefUnwindSafe for SubmitToolOutputsRunRequestWithoutStream
impl Send for SubmitToolOutputsRunRequestWithoutStream
impl Sync for SubmitToolOutputsRunRequestWithoutStream
impl Unpin for SubmitToolOutputsRunRequestWithoutStream
impl UnwindSafe for SubmitToolOutputsRunRequestWithoutStream
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