pub struct WhileExpression {
pub expr: Box<Expression>,
pub body: Block,
pub is_do_while: bool,
}
Fields§
§expr: Box<Expression>
§body: Block
§is_do_while: bool
Trait Implementations§
Source§impl Clone for WhileExpression
impl Clone for WhileExpression
Source§fn clone(&self) -> WhileExpression
fn clone(&self) -> WhileExpression
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WhileExpression
impl Debug for WhileExpression
Source§impl PartialEq for WhileExpression
impl PartialEq for WhileExpression
impl StructuralPartialEq for WhileExpression
Auto Trait Implementations§
impl Freeze for WhileExpression
impl RefUnwindSafe for WhileExpression
impl Send for WhileExpression
impl Sync for WhileExpression
impl Unpin for WhileExpression
impl UnwindSafe for WhileExpression
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