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

A while command was parsed, normally indicating the loop's body should be run while the guard's exit status is successful.

An 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]

Formats the value using the given formatter.

impl PartialEq for LoopKind
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for LoopKind
[src]

impl Copy for LoopKind
[src]

impl Clone for LoopKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more