Struct boa::syntax::ast::node::iteration::do_while_loop::DoWhileLoop [−][src]
pub struct DoWhileLoop { /* fields omitted */ }Expand description
The do...while statement creates a loop that executes a specified statement until the
test condition evaluates to false.
The condition is evaluated after executing the statement, resulting in the specified statement executing at least once.
More information:
Implementations
Trait Implementations
Performs the conversion.
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Runs Finalize::finalize() on this object and all contained subobjects Read more
Auto Trait Implementations
impl !RefUnwindSafe for DoWhileLoop
impl !Send for DoWhileLoop
impl !Sync for DoWhileLoop
impl Unpin for DoWhileLoop
impl UnwindSafe for DoWhileLoop
Blanket Implementations
Mutably borrows from an owned value. Read more