pub trait MechFunction {
    fn solve(&self);
    fn to_string(&self) -> String;
}

Required Methods§

Implementors§