pub struct MinimalPDFExtension<ET: EngineTypes> { /* private fields */ }Trait Implementations§
Source§impl<ET: EngineTypes> EngineExtension<ET> for MinimalPDFExtension<ET>
impl<ET: EngineTypes> EngineExtension<ET> for MinimalPDFExtension<ET>
fn new(_memory: &mut MemoryManager<ET::Token>) -> Self
Source§impl<ET: EngineTypes> PDFExtension<ET> for MinimalPDFExtension<ET>
impl<ET: EngineTypes> PDFExtension<ET> for MinimalPDFExtension<ET>
fn pdfmatches(&mut self) -> &mut Vec<String>
fn elapsed(&mut self) -> &mut Instant
fn colorstacks(&mut self) -> &mut Vec<Vec<PDFColor>>
fn current_colorstack(&mut self) -> &mut usize
fn pdfobjs(&mut self) -> &mut Vec<PDFObj>
fn pdfxforms(&mut self) -> &mut Vec<PDFXForm<ET>>
fn pdfannots(&mut self) -> &mut Vec<PDFAnnot<ET>>
fn pdfximages(&mut self) -> &mut Vec<PDFXImage<ET>>
fn pdfium_direct(&mut self) -> &mut Option<Option<Pdfium>>
fn pdfium(&mut self) -> Option<&Pdfium>
Auto Trait Implementations§
impl<ET> Freeze for MinimalPDFExtension<ET>
impl<ET> !RefUnwindSafe for MinimalPDFExtension<ET>
impl<ET> !Send for MinimalPDFExtension<ET>
impl<ET> !Sync for MinimalPDFExtension<ET>
impl<ET> Unpin for MinimalPDFExtension<ET>
impl<ET> UnsafeUnpin for MinimalPDFExtension<ET>
impl<ET> !UnwindSafe for MinimalPDFExtension<ET>
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more