pub struct PathFlow {
pub input_transforms: HashMap<String, InputTransform>,
pub path: String,
pub type: Type,
}Expand description
PathFlow : Reference to an existing flow by path. Use this to call another flow as a subflow
Fields§
§input_transforms: HashMap<String, InputTransform>Map of parameter names to their values (static or JavaScript expressions). These become the subflow’s input arguments
path: StringPath to the flow in the workspace (e.g., ‘f/flows/process_user’)
type: TypeImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PathFlow
impl<'de> Deserialize<'de> for PathFlow
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 PathFlow
Auto Trait Implementations§
impl Freeze for PathFlow
impl RefUnwindSafe for PathFlow
impl Send for PathFlow
impl Sync for PathFlow
impl Unpin for PathFlow
impl UnwindSafe for PathFlow
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