Type Alias Statement

Source
pub type Statement = Statement<Variable>;

Aliased Type§

struct Statement {
    pub parts: Vec<Variable>,
}

Fields§

§parts: Vec<Variable>

Trait Implementations§

Source§

impl From<Variable> for Statement

Source§

fn from(value: Variable) -> Statement

Converts to this type from the input type.
Source§

impl Imports for Statement

Source§

fn imports<I>(&self, receiver: &mut I)
where I: ImportReceiver,