pub struct ToolSearchOutputItemParam {
pub id: Option<String>,
pub call_id: Option<String>,
pub execution: Option<ToolSearchExecutionType>,
pub tools: Vec<Tool>,
pub status: Option<OutputStatus>,
}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 (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 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<ToolSearchOutputItemParam, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ToolSearchOutputItemParam, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ToolSearchOutputItemParam
impl Serialize for ToolSearchOutputItemParam
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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