pub struct ForStmt {
pub for_pos: usize,
pub init: Option<Stmt>,
pub cond: Option<Expr>,
pub post: Option<Stmt>,
pub body: Rc<BlockStmt, Global>,
}
Fields§
§for_pos: usize
§init: Option<Stmt>
§cond: Option<Expr>
§post: Option<Stmt>
§body: Rc<BlockStmt, Global>
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for ForStmt
impl !Send for ForStmt
impl !Sync for ForStmt
impl Unpin for ForStmt
impl UnwindSafe for ForStmt
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