pub enum PdfAConformance {
A2a,
A2b,
}Expand description
PDF/A conformance level.
Variants§
A2a
PDF/A-2a: full accessibility (requires tagging).
A2b
PDF/A-2b: basic compliance (visual appearance only).
Trait Implementations§
Source§impl Clone for PdfAConformance
impl Clone for PdfAConformance
Source§fn clone(&self) -> PdfAConformance
fn clone(&self) -> PdfAConformance
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 PdfAConformance
impl Debug for PdfAConformance
Source§impl<'de> Deserialize<'de> for PdfAConformance
impl<'de> Deserialize<'de> for PdfAConformance
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PdfAConformance
impl RefUnwindSafe for PdfAConformance
impl Send for PdfAConformance
impl Sync for PdfAConformance
impl Unpin for PdfAConformance
impl UnsafeUnpin for PdfAConformance
impl UnwindSafe for PdfAConformance
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