pub enum PdfVersion {
Version10,
Version11,
Version12,
Version13,
Version14,
Version15,
Version16,
Version17,
Version20,
}Expand description
A PDF version.
Specified at the first line of PDF files in the format “%PDF-x.y”. To support incremental updates (new content being appended to the end of file instead of modifying previous bytes), a Version entry in the document’s catalog dictionary takes precedence if present.
Variants§
Version10
Version 1.0.
Version11
Version 1.1.
Version12
Version 1.2.
Version13
Version 1.3.
Version14
Version 1.4.
Version15
Version 1.5.
Version16
Version 1.6.
Version17
Version 1.7.
Version20
Version 2.0.
Trait Implementations§
Source§impl Debug for PdfVersion
impl Debug for PdfVersion
Source§impl PartialEq for PdfVersion
impl PartialEq for PdfVersion
impl Eq for PdfVersion
impl StructuralPartialEq for PdfVersion
Auto Trait Implementations§
impl Freeze for PdfVersion
impl RefUnwindSafe for PdfVersion
impl Send for PdfVersion
impl Sync for PdfVersion
impl Unpin for PdfVersion
impl UnwindSafe for PdfVersion
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