pub struct ResponseFileSearchToolCall {
pub id: String,
pub queries: Vec<String>,
pub status: ResponseFileSearchToolCallStatus,
pub type_: String,
pub results: Option<Vec<FileSearchResult>>,
}Expand description
The results of a file search tool call.
Fields§
§id: StringThe unique ID of the file search tool call.
queries: Vec<String>The queries used to search for files.
status: ResponseFileSearchToolCallStatusThe status of the file search tool call.
type_: StringThe type of the file search tool call. Always file_search_call.
results: Option<Vec<FileSearchResult>>The results of the file search tool call.
Trait Implementations§
Source§impl Clone for ResponseFileSearchToolCall
impl Clone for ResponseFileSearchToolCall
Source§fn clone(&self) -> ResponseFileSearchToolCall
fn clone(&self) -> ResponseFileSearchToolCall
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ResponseFileSearchToolCall
impl Debug for ResponseFileSearchToolCall
Source§impl<'de> Deserialize<'de> for ResponseFileSearchToolCall
impl<'de> Deserialize<'de> for ResponseFileSearchToolCall
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
Auto Trait Implementations§
impl Freeze for ResponseFileSearchToolCall
impl RefUnwindSafe for ResponseFileSearchToolCall
impl Send for ResponseFileSearchToolCall
impl Sync for ResponseFileSearchToolCall
impl Unpin for ResponseFileSearchToolCall
impl UnsafeUnpin for ResponseFileSearchToolCall
impl UnwindSafe for ResponseFileSearchToolCall
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