pub struct RunStepFunctionObject {
pub name: String,
pub arguments: String,
pub output: Option<String>,
}
Fields§
§name: String
The name of the function.
arguments: 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 RunStepFunctionObject
impl Clone for RunStepFunctionObject
Source§fn clone(&self) -> RunStepFunctionObject
fn clone(&self) -> RunStepFunctionObject
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 RunStepFunctionObject
impl Debug for RunStepFunctionObject
Source§impl<'de> Deserialize<'de> for RunStepFunctionObject
impl<'de> Deserialize<'de> for RunStepFunctionObject
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 RunStepFunctionObject
impl PartialEq for RunStepFunctionObject
Source§impl Serialize for RunStepFunctionObject
impl Serialize for RunStepFunctionObject
impl StructuralPartialEq for RunStepFunctionObject
Auto Trait Implementations§
impl Freeze for RunStepFunctionObject
impl RefUnwindSafe for RunStepFunctionObject
impl Send for RunStepFunctionObject
impl Sync for RunStepFunctionObject
impl Unpin for RunStepFunctionObject
impl UnwindSafe for RunStepFunctionObject
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