pub struct PdfPageObjectMark<'a> { /* private fields */ }Expand description
A content marker identifying one or more PdfPageObject objects as “elements of interest” to a particular application or extension. Content markers can be used to attach metadata to single objects or groups of objects, and to organize rendered page objects into logical groupings or associations that may not necessarily be displayed during rendering but may have special significance to a processing application.
More information on content markers and PDF’s concept of “marked content” in general in The PDF Reference, Sixth Edition, in Section 10.5, beginning on page 850.
Trait Implementations§
Source§impl<'a> PdfiumLibraryBindingsAccessor<'a> for PdfPageObjectMark<'a>
impl<'a> PdfiumLibraryBindingsAccessor<'a> for PdfPageObjectMark<'a>
fn bindings(&self) -> &'a dyn PdfiumLibraryBindings
impl<'a> Send for PdfPageObjectMark<'a>
Available on crate feature
thread_safe only.impl<'a> Sync for PdfPageObjectMark<'a>
Available on crate feature
thread_safe only.Auto Trait Implementations§
impl<'a> Freeze for PdfPageObjectMark<'a>
impl<'a> RefUnwindSafe for PdfPageObjectMark<'a>
impl<'a> Unpin for PdfPageObjectMark<'a>
impl<'a> UnsafeUnpin for PdfPageObjectMark<'a>
impl<'a> UnwindSafe for PdfPageObjectMark<'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
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