pub enum PdfiumApiVersion {
Show 24 variants
Future,
V7763,
V7543,
V7350,
V7215,
V7123,
V6996,
V6721,
V6666,
V6611,
V6569,
V6555,
V6490,
V6406,
V6337,
V6295,
V6259,
V6164,
V6124,
V6110,
V6084,
V6043,
V6015,
V5961,
}Expand description
A specific Pdfium FPDF_* API release version.
Variants§
Future
V7763
V7543
V7350
V7215
V7123
V6996
V6721
V6666
V6611
V6569
V6555
V6490
V6406
V6337
V6295
V6259
V6164
V6124
V6110
V6084
V6043
V6015
V5961
Trait Implementations§
Source§impl Clone for PdfiumApiVersion
impl Clone for PdfiumApiVersion
Source§fn clone(&self) -> PdfiumApiVersion
fn clone(&self) -> PdfiumApiVersion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PdfiumApiVersion
Source§impl Debug for PdfiumApiVersion
impl Debug for PdfiumApiVersion
Source§impl PartialEq for PdfiumApiVersion
impl PartialEq for PdfiumApiVersion
Source§fn eq(&self, other: &PdfiumApiVersion) -> bool
fn eq(&self, other: &PdfiumApiVersion) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PdfiumApiVersion
Auto Trait Implementations§
impl Freeze for PdfiumApiVersion
impl RefUnwindSafe for PdfiumApiVersion
impl Send for PdfiumApiVersion
impl Sync for PdfiumApiVersion
impl Unpin for PdfiumApiVersion
impl UnsafeUnpin for PdfiumApiVersion
impl UnwindSafe for PdfiumApiVersion
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more