pub struct DoWhileStmt {
pub body: Box<Stmt>,
pub condition: Expr,
}Fields§
§body: Box<Stmt>§condition: ExprTrait Implementations§
Source§impl Clone for DoWhileStmt
impl Clone for DoWhileStmt
Source§fn clone(&self) -> DoWhileStmt
fn clone(&self) -> DoWhileStmt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DoWhileStmt
impl Debug for DoWhileStmt
Auto Trait Implementations§
impl Freeze for DoWhileStmt
impl RefUnwindSafe for DoWhileStmt
impl Send for DoWhileStmt
impl Sync for DoWhileStmt
impl Unpin for DoWhileStmt
impl UnsafeUnpin for DoWhileStmt
impl UnwindSafe for DoWhileStmt
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