pub struct ForEach {
pub i: Option<VarName>,
pub k: Option<VarName>,
pub v: Option<VarName>,
pub iterable: Box<Card>,
pub body: Box<Card>,
}
Fields§
§i: Option<VarName>
Loop variable is written into this variable
k: Option<VarName>
The key is written into this variable
v: Option<VarName>
The value is written into this variable
iterable: Box<Card>
Table that is iterated on
body: Box<Card>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ForEach
impl<'de> Deserialize<'de> for ForEach
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
Auto Trait Implementations§
impl Freeze for ForEach
impl RefUnwindSafe for ForEach
impl Send for ForEach
impl Sync for ForEach
impl Unpin for ForEach
impl UnwindSafe for ForEach
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