pub struct WhileOrUntilClauseCommand(pub CompoundList, pub DoGroupCommand, pub TokenLocation);Expand description
A while or until clause, whose looping is controlled by a condition.
Tuple Fields§
§0: CompoundList§1: DoGroupCommand§2: TokenLocationTrait Implementations§
Source§impl Clone for WhileOrUntilClauseCommand
impl Clone for WhileOrUntilClauseCommand
Source§fn clone(&self) -> WhileOrUntilClauseCommand
fn clone(&self) -> WhileOrUntilClauseCommand
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 WhileOrUntilClauseCommand
impl Debug for WhileOrUntilClauseCommand
Source§impl Display for WhileOrUntilClauseCommand
impl Display for WhileOrUntilClauseCommand
Source§impl SourceLocation for WhileOrUntilClauseCommand
impl SourceLocation for WhileOrUntilClauseCommand
Source§fn location(&self) -> Option<TokenLocation>
fn location(&self) -> Option<TokenLocation>
The location of the syntax item, when known
Auto Trait Implementations§
impl Freeze for WhileOrUntilClauseCommand
impl RefUnwindSafe for WhileOrUntilClauseCommand
impl Send for WhileOrUntilClauseCommand
impl Sync for WhileOrUntilClauseCommand
impl Unpin for WhileOrUntilClauseCommand
impl UnwindSafe for WhileOrUntilClauseCommand
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