pub struct BasicPdfWriter {
pub b: Vec<u8>,
pub xref: Vec<usize>,
pub comp: Compressor,
pub nocomp: bool,
}Expand description
Low level PDF writing.
Fields§
§b: Vec<u8>Output buffer.
xref: Vec<usize>Offset in file of each object.
comp: CompressorFor compressing streams.
nocomp: boolSuppresses compression.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BasicPdfWriter
impl RefUnwindSafe for BasicPdfWriter
impl Send for BasicPdfWriter
impl Sync for BasicPdfWriter
impl Unpin for BasicPdfWriter
impl UnsafeUnpin for BasicPdfWriter
impl UnwindSafe for BasicPdfWriter
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