pub struct ForEachNode {
pub childs: Vec<NodeType>,
pub collection: String,
pub index: String,
pub item: String,
pub get_collection_func: Node,
}
Fields§
§childs: Vec<NodeType>
§collection: String
§index: String
§item: String
§get_collection_func: Node
Implementations§
Trait Implementations§
Source§impl Clone for ForEachNode
impl Clone for ForEachNode
Source§fn clone(&self) -> ForEachNode
fn clone(&self) -> ForEachNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ForEachNode
impl Debug for ForEachNode
Auto Trait Implementations§
impl Freeze for ForEachNode
impl !RefUnwindSafe for ForEachNode
impl Send for ForEachNode
impl Sync for ForEachNode
impl Unpin for ForEachNode
impl !UnwindSafe for ForEachNode
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