pub trait RusTeXEngineT {
// Required methods
fn initialize(log: bool);
fn get() -> Self;
fn run<S: AsRef<str>>(
&mut self,
file: S,
settings: Settings,
) -> CompilationResult;
fn do_file<S: AsRef<str>>(file: S, settings: Settings) -> CompilationResult;
}Required Methods§
fn initialize(log: bool)
fn get() -> Self
fn run<S: AsRef<str>>( &mut self, file: S, settings: Settings, ) -> CompilationResult
fn do_file<S: AsRef<str>>(file: S, settings: Settings) -> CompilationResult
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.