pub struct DoWhileStatement {
pub statement: Box<Node<Statement>>,
pub expression: Box<Node<Expression>>,
}
Expand description
Do statement
(C11 6.8.5)
Fields§
§statement: Box<Node<Statement>>
§expression: Box<Node<Expression>>
Trait Implementations§
Source§impl Clone for DoWhileStatement
impl Clone for DoWhileStatement
Source§fn clone(&self) -> DoWhileStatement
fn clone(&self) -> DoWhileStatement
Returns a copy 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 DoWhileStatement
impl Debug for DoWhileStatement
Source§impl PartialEq for DoWhileStatement
impl PartialEq for DoWhileStatement
impl StructuralPartialEq for DoWhileStatement
Auto Trait Implementations§
impl Freeze for DoWhileStatement
impl RefUnwindSafe for DoWhileStatement
impl Send for DoWhileStatement
impl Sync for DoWhileStatement
impl Unpin for DoWhileStatement
impl UnwindSafe for DoWhileStatement
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