pub struct Trailer {
pub dict: Dict,
pub object_number: u32,
}Expand description
The trailer dictionary plus which object it came out of.
The object number matters to incremental saving: a trailer written as a
plain trailer keyword has no object number, while one that is a
cross-reference stream’s dictionary belongs to that stream’s object.
Fields§
§dict: DictThe trailer’s keys.
object_number: u32The object number the trailer came from; zero when it was written as
a bare trailer dictionary.
Trait Implementations§
impl StructuralPartialEq for Trailer
Auto Trait Implementations§
impl Freeze for Trailer
impl RefUnwindSafe for Trailer
impl Send for Trailer
impl Sync for Trailer
impl Unpin for Trailer
impl UnsafeUnpin for Trailer
impl UnwindSafe for Trailer
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