pub struct Step {
pub id: String,
pub name: String,
pub agent_type: AgentType,
pub dependencies: Vec<String>,
pub step_type: StepType,
}Expand description
A single step in a workflow
Fields§
§id: String§name: String§agent_type: AgentType§dependencies: Vec<String>§step_type: StepTypeTrait Implementations§
Auto Trait Implementations§
impl Freeze for Step
impl RefUnwindSafe for Step
impl Send for Step
impl Sync for Step
impl Unpin for Step
impl UnwindSafe for Step
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