pub struct ToolSearchOutputItemParam {
pub id: Option<String>,
pub call_id: Option<String>,
pub execution: Option<ToolSearchExecutionType>,
pub tools: Vec<Tool>,
pub status: Option<OutputStatus>,
}Available on crate feature
response-types only.Expand description
A tool search output input item.
Fields§
§id: Option<String>The unique ID of this tool search output.
call_id: Option<String>The unique ID of the tool search call generated by the model.
execution: Option<ToolSearchExecutionType>Whether tool search was executed by the server or by the client.
tools: Vec<Tool>The loaded tool definitions returned by the tool search output.
status: Option<OutputStatus>The status of the tool search output.
Trait Implementations§
Source§impl Clone for ToolSearchOutputItemParam
impl Clone for ToolSearchOutputItemParam
Source§fn clone(&self) -> ToolSearchOutputItemParam
fn clone(&self) -> ToolSearchOutputItemParam
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 ToolSearchOutputItemParam
impl Debug for ToolSearchOutputItemParam
Source§impl Default for ToolSearchOutputItemParam
impl Default for ToolSearchOutputItemParam
Source§fn default() -> ToolSearchOutputItemParam
fn default() -> ToolSearchOutputItemParam
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ToolSearchOutputItemParam
impl<'de> Deserialize<'de> for ToolSearchOutputItemParam
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 From<ToolSearchOutputItemParam> for Item
impl From<ToolSearchOutputItemParam> for Item
Source§fn from(output: ToolSearchOutputItemParam) -> Self
fn from(output: ToolSearchOutputItemParam) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for ToolSearchOutputItemParam
Auto Trait Implementations§
impl Freeze for ToolSearchOutputItemParam
impl RefUnwindSafe for ToolSearchOutputItemParam
impl Send for ToolSearchOutputItemParam
impl Sync for ToolSearchOutputItemParam
impl Unpin for ToolSearchOutputItemParam
impl UnsafeUnpin for ToolSearchOutputItemParam
impl UnwindSafe for ToolSearchOutputItemParam
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