pub struct DoWhileLoop { /* private fields */ }
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§
Source§impl Clone for DoWhileLoop
impl Clone for DoWhileLoop
Source§fn clone(&self) -> DoWhileLoop
fn clone(&self) -> DoWhileLoop
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 DoWhileLoop
impl Debug for DoWhileLoop
Source§impl Display for DoWhileLoop
impl Display for DoWhileLoop
Source§impl Drop for DoWhileLoop
impl Drop for DoWhileLoop
Source§impl Executable for DoWhileLoop
impl Executable for DoWhileLoop
Source§impl From<DoWhileLoop> for Node
impl From<DoWhileLoop> for Node
Source§fn from(do_while: DoWhileLoop) -> Self
fn from(do_while: DoWhileLoop) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DoWhileLoop
impl PartialEq for DoWhileLoop
Source§impl Trace for DoWhileLoop
impl Trace for DoWhileLoop
Source§fn finalize_glue(&self)
fn finalize_glue(&self)
Runs Finalize::finalize() on this object and all
contained subobjects
impl StructuralPartialEq for DoWhileLoop
Auto Trait Implementations§
impl Freeze for DoWhileLoop
impl RefUnwindSafe for DoWhileLoop
impl !Send for DoWhileLoop
impl !Sync for DoWhileLoop
impl Unpin for DoWhileLoop
impl UnwindSafe for DoWhileLoop
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