pub enum SkippedTextKind {
PageContents,
Form,
XObject,
FontEncoding,
}Expand description
Which kind of operator stream was skipped.
Variants§
PageContents
The page’s own /Contents — the whole page yielded no text.
Form
A form XObject: its text and its entire subtree (nested forms included) are absent.
XObject
An XObject name that resolved to nothing usable; whether it held text cannot be known.
FontEncoding
A Type0 font whose /Encoding CMap did not resolve (an unknown
name, or predefined data this build does not carry): its text is
still extracted under the Identity guess, which usually reads as
U+FFFD.
Trait Implementations§
Source§impl Clone for SkippedTextKind
impl Clone for SkippedTextKind
Source§fn clone(&self) -> SkippedTextKind
fn clone(&self) -> SkippedTextKind
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 SkippedTextKind
Source§impl Debug for SkippedTextKind
impl Debug for SkippedTextKind
Source§impl Display for SkippedTextKind
impl Display for SkippedTextKind
impl Eq for SkippedTextKind
Source§impl PartialEq for SkippedTextKind
impl PartialEq for SkippedTextKind
impl StructuralPartialEq for SkippedTextKind
Auto Trait Implementations§
impl Freeze for SkippedTextKind
impl RefUnwindSafe for SkippedTextKind
impl Send for SkippedTextKind
impl Sync for SkippedTextKind
impl Unpin for SkippedTextKind
impl UnsafeUnpin for SkippedTextKind
impl UnwindSafe for SkippedTextKind
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