pub struct RunStepDetailsToolCallsFileSearchObject {
pub id: String,
pub file_search: RunStepDetailsToolCallsFileSearchObjectFileSearch,
}
Fields§
§id: String
The ID of the tool call object.
file_search: RunStepDetailsToolCallsFileSearchObjectFileSearch
For now, this is always going to be an empty object.
Implementations§
Source§impl RunStepDetailsToolCallsFileSearchObject
impl RunStepDetailsToolCallsFileSearchObject
Sourcepub fn builder() -> RunStepDetailsToolCallsFileSearchObjectBuilder<((), ())>
pub fn builder() -> RunStepDetailsToolCallsFileSearchObjectBuilder<((), ())>
Create a builder for building RunStepDetailsToolCallsFileSearchObject
.
On the builder, call .id(...)
, .file_search(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of RunStepDetailsToolCallsFileSearchObject
.
Trait Implementations§
Source§impl Clone for RunStepDetailsToolCallsFileSearchObject
impl Clone for RunStepDetailsToolCallsFileSearchObject
Source§fn clone(&self) -> RunStepDetailsToolCallsFileSearchObject
fn clone(&self) -> RunStepDetailsToolCallsFileSearchObject
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 RunStepDetailsToolCallsFileSearchObject
impl<'de> Deserialize<'de> for RunStepDetailsToolCallsFileSearchObject
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 RunStepDetailsToolCallsFileSearchObject
impl PartialEq for RunStepDetailsToolCallsFileSearchObject
Source§fn eq(&self, other: &RunStepDetailsToolCallsFileSearchObject) -> bool
fn eq(&self, other: &RunStepDetailsToolCallsFileSearchObject) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RunStepDetailsToolCallsFileSearchObject
Auto Trait Implementations§
impl Freeze for RunStepDetailsToolCallsFileSearchObject
impl RefUnwindSafe for RunStepDetailsToolCallsFileSearchObject
impl Send for RunStepDetailsToolCallsFileSearchObject
impl Sync for RunStepDetailsToolCallsFileSearchObject
impl Unpin for RunStepDetailsToolCallsFileSearchObject
impl UnwindSafe for RunStepDetailsToolCallsFileSearchObject
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