pub struct RunToolCallObject_Function {
pub name: String,
pub arguments: String,
}
Expand description
The function definition.
Fields§
§name: String
The name of the function.
arguments: String
The arguments that the model expects you to pass to the function.
Trait Implementations§
Source§impl Clone for RunToolCallObject_Function
impl Clone for RunToolCallObject_Function
Source§fn clone(&self) -> RunToolCallObject_Function
fn clone(&self) -> RunToolCallObject_Function
Returns a copy 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 RunToolCallObject_Function
impl Debug for RunToolCallObject_Function
Source§impl Default for RunToolCallObject_Function
impl Default for RunToolCallObject_Function
Source§fn default() -> RunToolCallObject_Function
fn default() -> RunToolCallObject_Function
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RunToolCallObject_Function
impl RefUnwindSafe for RunToolCallObject_Function
impl Send for RunToolCallObject_Function
impl Sync for RunToolCallObject_Function
impl Unpin for RunToolCallObject_Function
impl UnwindSafe for RunToolCallObject_Function
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