pub enum EmbeddedSource {
NameTree,
AssociatedFile,
}Expand description
Where an EmbeddedFile was discovered.
Variants§
NameTree
The catalog’s /Names /EmbeddedFiles name tree (document attachments).
AssociatedFile
An /AF associated-files array (PDF 2.0). The semantic relationship is
carried separately in EmbeddedFile::relationship; the owning scope
(catalog vs. page) is implied by which accessor returned it.
Trait Implementations§
Source§impl Clone for EmbeddedSource
impl Clone for EmbeddedSource
Source§fn clone(&self) -> EmbeddedSource
fn clone(&self) -> EmbeddedSource
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 EmbeddedSource
Source§impl Debug for EmbeddedSource
impl Debug for EmbeddedSource
impl Eq for EmbeddedSource
Source§impl Hash for EmbeddedSource
impl Hash for EmbeddedSource
Source§impl PartialEq for EmbeddedSource
impl PartialEq for EmbeddedSource
impl StructuralPartialEq for EmbeddedSource
Auto Trait Implementations§
impl Freeze for EmbeddedSource
impl RefUnwindSafe for EmbeddedSource
impl Send for EmbeddedSource
impl Sync for EmbeddedSource
impl Unpin for EmbeddedSource
impl UnsafeUnpin for EmbeddedSource
impl UnwindSafe for EmbeddedSource
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