pub struct LoopNode {
pub base: NodeBase,
pub max_iterations: u64,
pub body: Vec<String>,
pub terminate: LoopTerminate,
pub output: Option<LoopOutputProjection>,
}Fields§
§base: NodeBase§max_iterations: u64§body: Vec<String>§terminate: LoopTerminate§output: Option<LoopOutputProjection>Trait Implementations§
Source§impl<'de> Deserialize<'de> for LoopNode
impl<'de> Deserialize<'de> for LoopNode
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 LoopNode
Auto Trait Implementations§
impl Freeze for LoopNode
impl RefUnwindSafe for LoopNode
impl Send for LoopNode
impl Sync for LoopNode
impl Unpin for LoopNode
impl UnsafeUnpin for LoopNode
impl UnwindSafe for LoopNode
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