#[non_exhaustive]pub enum ErrorPhase {
Open,
Parse,
Style,
Layout,
Render,
}Expand description
Stable processing phases for typed EPUB failures.
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
EPUB open/bootstrap work (container + OPF discovery).
Parse
Generic parsing/tokenization work.
Style
Style/CSS preparation work.
Layout
Layout/pagination work.
Render
Backend rendering work.
Trait Implementations§
Source§impl Clone for ErrorPhase
impl Clone for ErrorPhase
Source§fn clone(&self) -> ErrorPhase
fn clone(&self) -> ErrorPhase
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ErrorPhase
impl Debug for ErrorPhase
Source§impl Display for ErrorPhase
impl Display for ErrorPhase
Source§impl PartialEq for ErrorPhase
impl PartialEq for ErrorPhase
impl Copy for ErrorPhase
impl Eq for ErrorPhase
impl StructuralPartialEq for ErrorPhase
Auto Trait Implementations§
impl Freeze for ErrorPhase
impl RefUnwindSafe for ErrorPhase
impl Send for ErrorPhase
impl Sync for ErrorPhase
impl Unpin for ErrorPhase
impl UnsafeUnpin for ErrorPhase
impl UnwindSafe for ErrorPhase
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