[][src]Struct latexcompile::LatexCompiler

pub struct LatexCompiler { /* fields omitted */ }

The wrapper struct around some latex compiler. It provides a clean temporary enviroment for the latex compilation.

use std::fs::write;
use std::collections::HashMap;
use latexcompile::{LatexCompiler, LatexInput, LatexError};

fn main() {
   let compiler = LatexCompiler::new(HashMap::new()).unwrap();
   let input = LatexInput::from("assets");
   let pdf = compiler.run("assets/main.tex", &input);
   assert!(pdf.is_ok());
}

Methods

impl LatexCompiler
[src]

pub fn new(dict: HashMap<String, String>) -> Result<LatexCompiler, LatexError>
[src]

Create a new latex compiler wrapper

pub fn get_working_path(&self) -> &Path
[src]

pub fn with_cmd(self, cmd: &str) -> Self
[src]

Overwrite the default command-line pdflatex

pub fn with_args(self, cmd: &str) -> Self
[src]

Clean the arguments list and add a new argument. Use add_arg to add further arguments

pub fn add_arg(self, cmd: &str) -> Self
[src]

Add a new argument to the command-line.

pub fn run(&self, main: &str, input: &LatexInput) -> Result<Vec<u8>, LatexError>
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]