Trait falcon::il::Variable [] [src]

pub trait Variable: Debug + Display + Sync {
    fn name(&self) -> &str;
fn identifier(&self) -> String;
fn multi_var_clone(&self) -> MultiVar; }

A variable provides generic operations over Array, and Scalar.

Required Methods

Gets the name of this Variable.

Gets an identifier for this Variable.

An identifier is the representation used when printing Falcon IL.

Clone this Variable into a MultiVar.

Trait Implementations

impl<'v> Into<MultiVar> for &'v Variable
[src]

[src]

Performs the conversion.

Implementors