Struct syn_solidity::StmtFor
source · pub struct StmtFor {
pub for_token: For,
pub paren_token: Paren,
pub init: ForInitStmt,
pub cond: Option<Box<Expr>>,
pub semi_token: Semi,
pub post: Option<Box<Expr>>,
pub body: Box<Stmt>,
}Expand description
A for statement: for (uint256 i; i < 42; ++i) { ... }.
Solidity Reference: https://docs.soliditylang.org/en/latest/grammar.html#a4.SolidityParser.forStatement
Fields§
§for_token: For§paren_token: Paren§init: ForInitStmt§cond: Option<Box<Expr>>§semi_token: Semi§post: Option<Box<Expr>>§body: Box<Stmt>Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for StmtFor
impl !Send for StmtFor
impl !Sync for StmtFor
impl Unpin for StmtFor
impl UnwindSafe for StmtFor
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