Struct syn_solidity::YulFor
source · pub struct YulFor { /* private fields */ }
Expand description
Yul for loop e.g for {let i := 0} lt(i,10) {i := add(i,1)} {mstore(i,7)}
.
Solidity Reference: https://docs.soliditylang.org/en/latest/grammar.html#a4.SolidityParser.yulForStatement breakdown of parts: https://docs.soliditylang.org/en/latest/yul.html#loops
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for YulFor
impl !Send for YulFor
impl !Sync for YulFor
impl Unpin for YulFor
impl UnwindSafe for YulFor
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