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

Required Methods§

source

fn compare(&self, other: &Self) -> bool

source

fn variables_in_use(&self) -> Vec<&str>

Implementors§