pub struct LoopNode {
pub id: String,
pub condition: String,
pub max_iterations: usize,
pub body_node_id: Option<String>,
pub collection_key: Option<String>,
}Fields§
§id: String§condition: String§max_iterations: usize§body_node_id: Option<String>§collection_key: Option<String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoopNode
impl RefUnwindSafe for LoopNode
impl Send for LoopNode
impl Sync for LoopNode
impl Unpin 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