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