pub struct While {
pub while_token: Token,
pub condition: Box<Expr>,
pub block: Block,
}Fields§
§while_token: Token§condition: Box<Expr>§block: BlockTrait Implementations§
impl StructuralPartialEq for While
Auto Trait Implementations§
impl Freeze for While
impl RefUnwindSafe for While
impl Send for While
impl Sync for While
impl Unpin for While
impl UnwindSafe for While
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