pub struct RunStepDetailsToolCallsFileSearchObjectFileSearch {
pub ranking_options: Option<RunStepDetailsToolCallsFileSearchRankingOptionsObject>,
pub results: Option<Vec<RunStepDetailsToolCallsFileSearchResultObject>>,
}
Expand description
For now, this is always going to be an empty object.
Fields§
§ranking_options: Option<RunStepDetailsToolCallsFileSearchRankingOptionsObject>
§results: Option<Vec<RunStepDetailsToolCallsFileSearchResultObject>>
The results of the file search.
Implementations§
Source§impl RunStepDetailsToolCallsFileSearchObjectFileSearch
impl RunStepDetailsToolCallsFileSearchObjectFileSearch
Sourcepub fn builder() -> RunStepDetailsToolCallsFileSearchObjectFileSearchBuilder<((), ())>
pub fn builder() -> RunStepDetailsToolCallsFileSearchObjectFileSearchBuilder<((), ())>
Create a builder for building RunStepDetailsToolCallsFileSearchObjectFileSearch
.
On the builder, call .ranking_options(...)
(optional), .results(...)
(optional) to set the values of the fields.
Finally, call .build()
to create the instance of RunStepDetailsToolCallsFileSearchObjectFileSearch
.
Trait Implementations§
Source§impl Clone for RunStepDetailsToolCallsFileSearchObjectFileSearch
impl Clone for RunStepDetailsToolCallsFileSearchObjectFileSearch
Source§fn clone(&self) -> RunStepDetailsToolCallsFileSearchObjectFileSearch
fn clone(&self) -> RunStepDetailsToolCallsFileSearchObjectFileSearch
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for RunStepDetailsToolCallsFileSearchObjectFileSearch
impl Default for RunStepDetailsToolCallsFileSearchObjectFileSearch
Source§fn default() -> RunStepDetailsToolCallsFileSearchObjectFileSearch
fn default() -> RunStepDetailsToolCallsFileSearchObjectFileSearch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RunStepDetailsToolCallsFileSearchObjectFileSearch
impl<'de> Deserialize<'de> for RunStepDetailsToolCallsFileSearchObjectFileSearch
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 RunStepDetailsToolCallsFileSearchObjectFileSearch
impl PartialEq for RunStepDetailsToolCallsFileSearchObjectFileSearch
Source§fn eq(&self, other: &RunStepDetailsToolCallsFileSearchObjectFileSearch) -> bool
fn eq(&self, other: &RunStepDetailsToolCallsFileSearchObjectFileSearch) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for RunStepDetailsToolCallsFileSearchObjectFileSearch
Auto Trait Implementations§
impl Freeze for RunStepDetailsToolCallsFileSearchObjectFileSearch
impl RefUnwindSafe for RunStepDetailsToolCallsFileSearchObjectFileSearch
impl Send for RunStepDetailsToolCallsFileSearchObjectFileSearch
impl Sync for RunStepDetailsToolCallsFileSearchObjectFileSearch
impl Unpin for RunStepDetailsToolCallsFileSearchObjectFileSearch
impl UnwindSafe for RunStepDetailsToolCallsFileSearchObjectFileSearch
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