[][src]Enum tectonic::driver::PassSetting

pub enum PassSetting {
    Default,
    Tex,
    BibtexFirst,
}

The different types of "passes" that ProcessingSession knows how to run. See ProcessingSession::run for more details.

Variants

Default

The default pass, which repeatedly runs TeX and BibTeX until it doesn't need to any more.

Tex

Just run the TeX engine once.

BibtexFirst

Like the default pass, but runs BibTeX once first, before doing anything else.

Trait Implementations

impl Clone for PassSetting[src]

impl Copy for PassSetting[src]

impl Debug for PassSetting[src]

impl Default for PassSetting[src]

impl Eq for PassSetting[src]

impl FromStr for PassSetting[src]

type Err = &'static str

The associated error which can be returned from parsing.

impl PartialEq<PassSetting> for PassSetting[src]

impl StructuralEq for PassSetting[src]

impl StructuralPartialEq for PassSetting[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<'a, T> TryFrom<&'a str> for T where
    T: FromStr

type Err = <T as FromStr>::Err

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,