pub enum PassSetting {
Default,
Tex,
BibtexFirst,
}Expand description
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§
Source§impl Clone for PassSetting
impl Clone for PassSetting
Source§fn clone(&self) -> PassSetting
fn clone(&self) -> PassSetting
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PassSetting
Source§impl Debug for PassSetting
impl Debug for PassSetting
Source§impl Default for PassSetting
impl Default for PassSetting
Source§fn default() -> PassSetting
fn default() -> PassSetting
Returns the “default value” for a type. Read more
impl Eq for PassSetting
Source§impl FromStr for PassSetting
impl FromStr for PassSetting
Source§impl PartialEq for PassSetting
impl PartialEq for PassSetting
Source§fn eq(&self, other: &PassSetting) -> bool
fn eq(&self, other: &PassSetting) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PassSetting
Auto Trait Implementations§
impl Freeze for PassSetting
impl RefUnwindSafe for PassSetting
impl Send for PassSetting
impl Sync for PassSetting
impl Unpin for PassSetting
impl UnsafeUnpin for PassSetting
impl UnwindSafe for PassSetting
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.