#[repr(C)]pub struct StatementWhile<'ast> {
pub base: StatementHeader<'ast>,
pub condition: Expression<'ast>,
pub body: Block<'ast>,
pub has_do: bool,
pub do_location: Location,
}Fields§
§base: StatementHeader<'ast>§condition: Expression<'ast>§body: Block<'ast>§has_do: bool§do_location: LocationImplementations§
Trait Implementations§
Source§impl Debug for StatementWhile<'_>
impl Debug for StatementWhile<'_>
Auto Trait Implementations§
impl<'ast> !Send for StatementWhile<'ast>
impl<'ast> !Sync for StatementWhile<'ast>
impl<'ast> Freeze for StatementWhile<'ast>
impl<'ast> RefUnwindSafe for StatementWhile<'ast>
impl<'ast> Unpin for StatementWhile<'ast>
impl<'ast> UnsafeUnpin for StatementWhile<'ast>
impl<'ast> UnwindSafe for StatementWhile<'ast>
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