Type Alias While

Source
pub type While = While<Value>;

Aliased Type§

struct While {
    pub cond: Condition<Value>,
    pub body: Statements<Value>,
}

Fields§

§cond: Condition<Value>§body: Statements<Value>