pub struct While<N: Node> {
pub cond: Expr,
pub block: ControlBlock<N>,
/* private fields */
}Fields§
§cond: Expr§block: ControlBlock<N>Trait Implementations§
Auto Trait Implementations§
impl<N> !Send for While<N>
impl<N> !Sync for While<N>
impl<N> Freeze for While<N>
impl<N> RefUnwindSafe for While<N>where
N: RefUnwindSafe,
impl<N> Unpin for While<N>where
N: Unpin,
impl<N> UnsafeUnpin for While<N>
impl<N> UnwindSafe for While<N>where
N: UnwindSafe,
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