pub enum PdfVersion {
Pdf10,
Pdf11,
Pdf12,
Pdf13,
Pdf14,
Pdf15,
Pdf16,
Pdf17,
Pdf20,
}
Expand description
The version of a PDF document.
Variants§
Pdf10
PDF 1.0.
Pdf11
PDF 1.1.
Pdf12
PDF 1.2.
Pdf13
PDF 1.3.
Pdf14
PDF 1.4.
Pdf15
PDF 1.5.
Pdf16
PDF 1.6.
Pdf17
PDF 1.7.
Pdf20
PDF 2.0.
Trait Implementations§
Source§impl Clone for PdfVersion
impl Clone for PdfVersion
Source§fn clone(&self) -> PdfVersion
fn clone(&self) -> PdfVersion
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 moreSource§impl Debug for PdfVersion
impl Debug for PdfVersion
Source§impl Ord for PdfVersion
impl Ord for PdfVersion
Source§fn cmp(&self, other: &PdfVersion) -> Ordering
fn cmp(&self, other: &PdfVersion) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PdfVersion
impl PartialEq for PdfVersion
Source§impl PartialOrd for PdfVersion
impl PartialOrd for PdfVersion
impl Copy 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