pub struct FlowStepInput {
pub header: InputHeader,
pub step_id: String,
pub instructions: String,
pub turn_metadata: Option<RuntimeTurnMetadata>,
}Expand description
Flow step input from mob orchestration.
Fields§
§header: InputHeader§step_id: StringFlow step identifier.
instructions: StringStep instructions/prompt.
turn_metadata: Option<RuntimeTurnMetadata>Trait Implementations§
Source§impl Clone for FlowStepInput
impl Clone for FlowStepInput
Source§fn clone(&self) -> FlowStepInput
fn clone(&self) -> FlowStepInput
Returns a duplicate 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 FlowStepInput
impl Debug for FlowStepInput
Source§impl<'de> Deserialize<'de> for FlowStepInput
impl<'de> Deserialize<'de> for FlowStepInput
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
Auto Trait Implementations§
impl Freeze for FlowStepInput
impl RefUnwindSafe for FlowStepInput
impl Send for FlowStepInput
impl Sync for FlowStepInput
impl Unpin for FlowStepInput
impl UnsafeUnpin for FlowStepInput
impl UnwindSafe for FlowStepInput
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