pub struct ForStmt {
pub init: Box<[Expr]>,
pub condition: Box<[Expr]>,
pub update: Box<[Expr]>,
pub body: Box<Stmt>,
pub uses_alternative: bool,
}Fields§
§init: Box<[Expr]>§condition: Box<[Expr]>§update: Box<[Expr]>§body: Box<Stmt>§uses_alternative: boolTrait Implementations§
Auto Trait Implementations§
impl Freeze for ForStmt
impl RefUnwindSafe for ForStmt
impl Send for ForStmt
impl Sync for ForStmt
impl Unpin for ForStmt
impl UnsafeUnpin 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