pub struct PDF<'a> {
pub header: Header,
pub objects: Vec<Object<'a>>,
pub cross_references: Vec<SubSection>,
pub trailer: Trailer<'a>,
pub byte_offset: u64,
}Expand description
The parsed PDF file.
Fields§
§header: Header§objects: Vec<Object<'a>>§cross_references: Vec<SubSection>§trailer: Trailer<'a>§byte_offset: u64Byte offset of last cross reference section.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for PDF<'a>
impl<'a> RefUnwindSafe for PDF<'a>
impl<'a> Send for PDF<'a>
impl<'a> Sync for PDF<'a>
impl<'a> Unpin for PDF<'a>
impl<'a> UnwindSafe for PDF<'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