pub trait Variable {
    // Required method
    fn get_id(&self) -> u32;
}
Expand description

Trait which variables need to implement to allow the substitution to get to the u32 identifying the variable

Required Methods§

source

fn get_id(&self) -> u32

Implementations on Foreign Types§

source§

impl Variable for u32

source§

fn get_id(&self) -> u32

source§

impl Variable for TypeVariable

source§

fn get_id(&self) -> u32

Implementors§