pub struct FileSearchToolCall {
pub id: String,
pub type: String,
pub status: String,
pub queries: Vec<String>,
pub results: Option<Vec<FileSearchToolCall_Results>>,
}
Expand description
The results of a file search tool call.
Fields§
§id: String
The unique ID of the file search tool call.
type: String
The type of the file search tool call.
status: String
The status of the file search tool call.
queries: Vec<String>
The queries used to search for files.
results: Option<Vec<FileSearchToolCall_Results>>
The results of the file search tool call.
Trait Implementations§
Source§impl Clone for FileSearchToolCall
impl Clone for FileSearchToolCall
Source§fn clone(&self) -> FileSearchToolCall
fn clone(&self) -> FileSearchToolCall
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
impl Debug for FileSearchToolCall
Source§impl Default for FileSearchToolCall
impl Default for FileSearchToolCall
Source§fn default() -> FileSearchToolCall
fn default() -> FileSearchToolCall
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FileSearchToolCall
impl RefUnwindSafe for FileSearchToolCall
impl Send for FileSearchToolCall
impl Sync for FileSearchToolCall
impl Unpin for FileSearchToolCall
impl UnwindSafe for FileSearchToolCall
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