[][src]Struct pdf::xref::XRefSection

pub struct XRefSection {
    pub first_id: u32,
    pub entries: Vec<XRef>,
}

As found in PDF files

Fields

first_id: u32entries: Vec<XRef>

Methods

impl XRefSection[src]

pub fn new(first_id: u32) -> XRefSection[src]

pub fn add_free_entry(&mut self, next_obj_nr: ObjNr, gen_nr: GenNr)[src]

pub fn add_inuse_entry(&mut self, pos: usize, gen_nr: u16)[src]

Trait Implementations

impl Debug for XRefSection[src]

Auto Trait Implementations

impl Send for XRefSection

impl Sync for XRefSection

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.