pub struct StmtWhile {
pub condition: Expression,
pub block: Block,
pub span: Span,
}
Expand description
while statement
Fields§
§condition: Expression
§block: Block
§span: Span
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StmtWhile
impl RefUnwindSafe for StmtWhile
impl Send for StmtWhile
impl Sync for StmtWhile
impl Unpin for StmtWhile
impl UnwindSafe for StmtWhile
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