pub struct RunStepDeltaStepDetailsToolCallsCodeOutputImageObject {
pub index: u64,
pub image: Option<RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage>,
}
Fields§
§index: u64
The index of the output in the outputs array.
image: Option<RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectImage>
Implementations§
Source§impl RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
impl RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
Sourcepub fn builder() -> RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectBuilder<((), ())>
pub fn builder() -> RunStepDeltaStepDetailsToolCallsCodeOutputImageObjectBuilder<((), ())>
Create a builder for building RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
.
On the builder, call .index(...)
, .image(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
.
Trait Implementations§
Source§impl Clone for RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
impl Clone for RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
Source§fn clone(&self) -> RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
fn clone(&self) -> RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
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 RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
impl<'de> Deserialize<'de> for RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
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 RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
impl PartialEq for RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
Source§fn eq(
&self,
other: &RunStepDeltaStepDetailsToolCallsCodeOutputImageObject,
) -> bool
fn eq( &self, other: &RunStepDeltaStepDetailsToolCallsCodeOutputImageObject, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
Auto Trait Implementations§
impl Freeze for RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
impl RefUnwindSafe for RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
impl Send for RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
impl Sync for RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
impl Unpin for RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
impl UnwindSafe for RunStepDeltaStepDetailsToolCallsCodeOutputImageObject
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