pub struct PdfPageStructureTree<'a> { /* private fields */ }Expand description
The root element of a tree of elements that together describe the logical hierarchy of a single PdfPage.
More information on the structure tree can be found in The PDF Reference, Sixth Edition, in Section 10.6.1, beginning on page 856.
Trait Implementations§
Source§impl<'a> Drop for PdfPageStructureTree<'a>
impl<'a> Drop for PdfPageStructureTree<'a>
Source§impl<'a> PdfiumLibraryBindingsAccessor<'a> for PdfPageStructureTree<'a>
impl<'a> PdfiumLibraryBindingsAccessor<'a> for PdfPageStructureTree<'a>
fn bindings(&self) -> &'a dyn PdfiumLibraryBindings
impl<'a> Send for PdfPageStructureTree<'a>
Available on crate feature
thread_safe only.impl<'a> Sync for PdfPageStructureTree<'a>
Available on crate feature
thread_safe only.Auto Trait Implementations§
impl<'a> Freeze for PdfPageStructureTree<'a>
impl<'a> RefUnwindSafe for PdfPageStructureTree<'a>
impl<'a> Unpin for PdfPageStructureTree<'a>
impl<'a> UnsafeUnpin for PdfPageStructureTree<'a>
impl<'a> UnwindSafe for PdfPageStructureTree<'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