pub trait TexEngine {
// Required method
fn run_and_return_stdout(&self, tex_source_code: &str) -> String;
}
Expand description
Implementations of this trait can run TeX source code and return stdout.
Required Methods§
sourcefn run_and_return_stdout(&self, tex_source_code: &str) -> String
fn run_and_return_stdout(&self, tex_source_code: &str) -> String
Run the provided TeX source code and return stdout.