pub enum InterpreterWarning {
UnsupportedFont,
ImageDecodeFailure,
}Expand description
Warnings that can occur while interpreting a PDF file.
Variants§
UnsupportedFont
An unsupported font kind was encountered.
Currently, only CID fonts with non-identity encoding are unsupported.
ImageDecodeFailure
An image failed to decode.
Trait Implementations§
Source§impl Clone for InterpreterWarning
impl Clone for InterpreterWarning
Source§fn clone(&self) -> InterpreterWarning
fn clone(&self) -> InterpreterWarning
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 InterpreterWarning
impl Debug for InterpreterWarning
impl Copy for InterpreterWarning
Auto Trait Implementations§
impl Freeze for InterpreterWarning
impl RefUnwindSafe for InterpreterWarning
impl Send for InterpreterWarning
impl Sync for InterpreterWarning
impl Unpin for InterpreterWarning
impl UnwindSafe for InterpreterWarning
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