pub trait ValueExtension {
    fn compare(&self, other: &Self) -> bool;
fn variables_in_use(&self) -> Vec<String>; }

Required methods

Implementors