pub trait Justifiable<I: ToString = String>: Clone + Display + Serialize {
    fn invocations(&self) -> &Vec<I> ;
    fn justification(&self) -> &Justification;
}

Required Methods§

Implementors§