pub struct FileSearchToolCall_Results {
pub file_id: Option<String>,
pub text: Option<String>,
pub filename: Option<String>,
pub attributes: Option<VectorStoreFileAttributes>,
pub score: Option<f64>,
}
Fields§
§file_id: Option<String>
The unique ID of the file.
text: Option<String>
The text that was retrieved from the file.
filename: Option<String>
The name of the file.
attributes: Option<VectorStoreFileAttributes>
§score: Option<f64>
The relevance score of the file - a value between 0 and 1.
Trait Implementations§
Source§impl Clone for FileSearchToolCall_Results
impl Clone for FileSearchToolCall_Results
Source§fn clone(&self) -> FileSearchToolCall_Results
fn clone(&self) -> FileSearchToolCall_Results
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 moreSource§impl Debug for FileSearchToolCall_Results
impl Debug for FileSearchToolCall_Results
Source§impl Default for FileSearchToolCall_Results
impl Default for FileSearchToolCall_Results
Source§fn default() -> FileSearchToolCall_Results
fn default() -> FileSearchToolCall_Results
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FileSearchToolCall_Results
impl RefUnwindSafe for FileSearchToolCall_Results
impl Send for FileSearchToolCall_Results
impl Sync for FileSearchToolCall_Results
impl Unpin for FileSearchToolCall_Results
impl UnwindSafe for FileSearchToolCall_Results
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