pub struct RunStepFunctionObjectDelta {
pub name: Option<String>,
pub arguments: Option<String>,
pub output: Option<String>,
}
Fields§
§name: Option<String>
The name of the function.
arguments: Option<String>
The arguments passed to the function.
output: Option<String>
The output of the function. This will be null
if the outputs have not been submitted yet.
Trait Implementations§
Source§impl Clone for RunStepFunctionObjectDelta
impl Clone for RunStepFunctionObjectDelta
Source§fn clone(&self) -> RunStepFunctionObjectDelta
fn clone(&self) -> RunStepFunctionObjectDelta
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 RunStepFunctionObjectDelta
impl Debug for RunStepFunctionObjectDelta
Source§impl<'de> Deserialize<'de> for RunStepFunctionObjectDelta
impl<'de> Deserialize<'de> for RunStepFunctionObjectDelta
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
impl StructuralPartialEq for RunStepFunctionObjectDelta
Auto Trait Implementations§
impl Freeze for RunStepFunctionObjectDelta
impl RefUnwindSafe for RunStepFunctionObjectDelta
impl Send for RunStepFunctionObjectDelta
impl Sync for RunStepFunctionObjectDelta
impl Unpin for RunStepFunctionObjectDelta
impl UnwindSafe for RunStepFunctionObjectDelta
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