pub trait FormattedOutput: Sized {
    // Required methods
    fn is_alpha(&self) -> bool;
    fn ocaml(&self, cache: &mut HashMap<CacheId, Self>) -> String;
    fn latex(&self, cache: &mut HashMap<CacheId, Self>) -> String;
    fn text(&self, cache: &mut HashMap<CacheId, Self>) -> String;
}

Required Methods§

source

fn is_alpha(&self) -> bool

source

fn ocaml(&self, cache: &mut HashMap<CacheId, Self>) -> String

source

fn latex(&self, cache: &mut HashMap<CacheId, Self>) -> String

source

fn text(&self, cache: &mut HashMap<CacheId, Self>) -> String

Implementors§