pub enum ToolCallCaller {
Direct,
Program(ProgramToolCallCaller),
}Available on crate feature
response-types only.Expand description
The execution context that produced this tool call.
Variants§
Direct
Program(ProgramToolCallCaller)
Trait Implementations§
Source§impl Clone for ToolCallCaller
impl Clone for ToolCallCaller
Source§fn clone(&self) -> ToolCallCaller
fn clone(&self) -> ToolCallCaller
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 ToolCallCaller
impl Debug for ToolCallCaller
Source§impl<'de> Deserialize<'de> for ToolCallCaller
impl<'de> Deserialize<'de> for ToolCallCaller
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 ToolCallCaller
impl PartialEq for ToolCallCaller
Source§impl Serialize for ToolCallCaller
impl Serialize for ToolCallCaller
impl StructuralPartialEq for ToolCallCaller
Auto Trait Implementations§
impl Freeze for ToolCallCaller
impl RefUnwindSafe for ToolCallCaller
impl Send for ToolCallCaller
impl Sync for ToolCallCaller
impl Unpin for ToolCallCaller
impl UnsafeUnpin for ToolCallCaller
impl UnwindSafe for ToolCallCaller
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