Skip to main content

RusTeXEngineT

Trait RusTeXEngineT 

Source
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§

Source

fn initialize(log: bool)

Source

fn get() -> Self

Source

fn run<S: AsRef<str>>( &mut self, file: S, settings: Settings, ) -> CompilationResult

Source

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.

Implementors§