pub enum FreshFrom {
None,
C0,
C1,
C2,
C3,
}Expand description
Controls which cache points to bypass during processing. Cascade: fresh-from C1 means skip C1, C2, C3 caches.
Variants§
None
Use all caches normally
C0
Skip all caches, reprocess everything from PDF
C1
Re-extract XHTML from Tika, reparse, rebuild graph
C2
Reparse elements from cached XHTML, rebuild graph
C3
Rebuild graph from cached preprocessor output
Implementations§
Trait Implementations§
impl Copy for FreshFrom
impl Eq for FreshFrom
impl StructuralPartialEq for FreshFrom
Auto Trait Implementations§
impl Freeze for FreshFrom
impl RefUnwindSafe for FreshFrom
impl Send for FreshFrom
impl Sync for FreshFrom
impl Unpin for FreshFrom
impl UnsafeUnpin for FreshFrom
impl UnwindSafe for FreshFrom
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.