pub enum FileSearchToolCallStatus {
InProgress,
Searching,
Completed,
Incomplete,
Failed,
}
Expand description
The status of the file search tool call. One of in_progress
,
searching
, incomplete
or failed
,
Variants§
Trait Implementations§
Source§impl Clone for FileSearchToolCallStatus
impl Clone for FileSearchToolCallStatus
Source§fn clone(&self) -> FileSearchToolCallStatus
fn clone(&self) -> FileSearchToolCallStatus
Returns a duplicate 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 FileSearchToolCallStatus
impl Debug for FileSearchToolCallStatus
Source§impl<'de> Deserialize<'de> for FileSearchToolCallStatus
impl<'de> Deserialize<'de> for FileSearchToolCallStatus
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 FileSearchToolCallStatus
impl PartialEq for FileSearchToolCallStatus
Source§impl Serialize for FileSearchToolCallStatus
impl Serialize for FileSearchToolCallStatus
impl Copy for FileSearchToolCallStatus
impl StructuralPartialEq for FileSearchToolCallStatus
Auto Trait Implementations§
impl Freeze for FileSearchToolCallStatus
impl RefUnwindSafe for FileSearchToolCallStatus
impl Send for FileSearchToolCallStatus
impl Sync for FileSearchToolCallStatus
impl Unpin for FileSearchToolCallStatus
impl UnwindSafe for FileSearchToolCallStatus
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