pub struct RunStepDetailsToolCallsFileSearchResultObject {
pub file_id: String,
pub file_name: String,
pub score: f64,
pub content: Vec<RunStepDetailsToolCallsFileSearchResultObject_Content>,
}Expand description
A result instance of the file search.
Fields§
§file_id: StringThe ID of the file that result was found in.
file_name: StringThe name of the file that result was found in.
score: f64The score of the result.
content: Vec<RunStepDetailsToolCallsFileSearchResultObject_Content>The content of the result that was found.
Trait Implementations§
Source§impl Clone for RunStepDetailsToolCallsFileSearchResultObject
impl Clone for RunStepDetailsToolCallsFileSearchResultObject
Source§fn clone(&self) -> RunStepDetailsToolCallsFileSearchResultObject
fn clone(&self) -> RunStepDetailsToolCallsFileSearchResultObject
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for RunStepDetailsToolCallsFileSearchResultObject
impl RefUnwindSafe for RunStepDetailsToolCallsFileSearchResultObject
impl Send for RunStepDetailsToolCallsFileSearchResultObject
impl Sync for RunStepDetailsToolCallsFileSearchResultObject
impl Unpin for RunStepDetailsToolCallsFileSearchResultObject
impl UnwindSafe for RunStepDetailsToolCallsFileSearchResultObject
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