pub enum StepInput {
Literal(String),
StepReference {
step: String,
},
Template {
template: String,
},
}Expand description
Represents an input to a step, which can be a literal value or reference to another step’s output
Variants§
Literal(String)
A literal string value
StepReference
A reference to another step’s output
Template
A formatted string with placeholders
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StepInput
impl<'de> Deserialize<'de> for StepInput
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 StepInput
Auto Trait Implementations§
impl Freeze for StepInput
impl RefUnwindSafe for StepInput
impl Send for StepInput
impl Sync for StepInput
impl Unpin for StepInput
impl UnwindSafe for StepInput
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