pub struct WhileBlock {
pub expr: Expr,
pub block: Block,
}
Expand description
while exp do block end
Fields§
§expr: Expr
§block: Block
Trait Implementations§
Source§impl Debug for WhileBlock
impl Debug for WhileBlock
Source§impl PartialEq for WhileBlock
impl PartialEq for WhileBlock
impl StructuralPartialEq for WhileBlock
Auto Trait Implementations§
impl Freeze for WhileBlock
impl RefUnwindSafe for WhileBlock
impl Send for WhileBlock
impl Sync for WhileBlock
impl Unpin for WhileBlock
impl UnwindSafe for WhileBlock
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