#[non_exhaustive]pub enum Operation {
Open,
PageLoad,
Interpret,
Render,
Extract,
Script,
}Expand description
What the engine was doing when a deadline passed — the noun in the message, and the boundary at which the check sits.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Open
Opening the document: the header and cross-reference read, including the rebuild scan of a damaged file.
PageLoad
Loading one page’s dictionary — the per-page boundary a walk over a document crosses.
Interpret
Interpreting a content stream into page objects.
Render
Rasterizing the page objects.
Extract
Extracting text.
Script
Running a document script.
Trait Implementations§
impl Copy for Operation
impl Eq for Operation
impl StructuralPartialEq for Operation
Auto Trait Implementations§
impl Freeze for Operation
impl RefUnwindSafe for Operation
impl Send for Operation
impl Sync for Operation
impl Unpin for Operation
impl UnsafeUnpin for Operation
impl UnwindSafe for Operation
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