Type Alias If

Source
pub type If = If<Value>;

Aliased Type§

struct If {
    pub branches: Vec<IfBranch<Value>>,
    pub else_: Option<Statements<Value>>,
}

Fields§

§branches: Vec<IfBranch<Value>>§else_: Option<Statements<Value>>