Enum conch_parser::ast::builder::LoopKind
[−]
[src]
pub enum LoopKind {
While,
Until,
}An indicator to the builder whether a while or until command was parsed.
Variants
WhileA while command was parsed, normally indicating the loop's body should be run
while the guard's exit status is successful.
UntilAn until command was parsed, normally indicating the loop's body should be run
until the guard's exit status becomes successful.
Trait Implementations
impl Debug for LoopKind[src]
impl PartialEq for LoopKind[src]
fn eq(&self, __arg_0: &LoopKind) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0
This method tests for !=.
impl Eq for LoopKind[src]
impl Copy for LoopKind[src]
impl Clone for LoopKind[src]
fn clone(&self) -> LoopKind
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more