pub struct InterpreterCache<'a> { /* private fields */ }Expand description
A cache used by the interpreter.
Ideally, such a cache should be constructed once per PDF and then reused across multiple interpreter invocations on the same document.
Implementations§
Source§impl<'a> InterpreterCache<'a>
impl<'a> InterpreterCache<'a>
Trait Implementations§
Source§impl<'a> Clone for InterpreterCache<'a>
impl<'a> Clone for InterpreterCache<'a>
Source§fn clone(&self) -> InterpreterCache<'a>
fn clone(&self) -> InterpreterCache<'a>
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 moreAuto Trait Implementations§
impl<'a> !RefUnwindSafe for InterpreterCache<'a>
impl<'a> !Send for InterpreterCache<'a>
impl<'a> !Sync for InterpreterCache<'a>
impl<'a> !UnwindSafe for InterpreterCache<'a>
impl<'a> Freeze for InterpreterCache<'a>
impl<'a> Unpin for InterpreterCache<'a>
impl<'a> UnsafeUnpin for InterpreterCache<'a>
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