pub struct Trailer<'a> {
pub size: i64,
pub prev: Option<IndirectReference>,
pub root: IndirectReference,
pub encrypt: Option<IndirectReference>,
pub info: Option<IndirectReference>,
pub id: Option<Either<IndirectReference, Vec<HexString<'a>>>>,
}Expand description
The PDF trailer.
Fields§
§size: i64§prev: Option<IndirectReference>§root: IndirectReference§encrypt: Option<IndirectReference>§info: Option<IndirectReference>§id: Option<Either<IndirectReference, Vec<HexString<'a>>>>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Trailer<'a>
impl<'a> RefUnwindSafe for Trailer<'a>
impl<'a> Send for Trailer<'a>
impl<'a> Sync for Trailer<'a>
impl<'a> Unpin for Trailer<'a>
impl<'a> UnwindSafe for Trailer<'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