pub struct SharedObjectHintTable {
pub first_object: u32,
pub first_offset: u64,
pub count: u32,
pub entries: Vec<SharedHintEntry>,
}Expand description
The shared object hint table (PDF spec Annex F.4).
Fields§
§first_object: u32First shared object number.
first_offset: u64Location of first shared object.
count: u32Number of shared object entries.
entries: Vec<SharedHintEntry>Per-object entries.
Trait Implementations§
Source§fn clone(&self) -> SharedObjectHintTable
fn clone(&self) -> SharedObjectHintTable
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
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