#[non_exhaustive]pub enum XmpIdentificationKind {
PdfA,
PdfUa,
Wtpdf,
}Expand description
Recognized XMP identification schema kind.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for XmpIdentificationKind
impl Clone for XmpIdentificationKind
Source§fn clone(&self) -> XmpIdentificationKind
fn clone(&self) -> XmpIdentificationKind
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 moreSource§impl Debug for XmpIdentificationKind
impl Debug for XmpIdentificationKind
Source§impl<'de> Deserialize<'de> for XmpIdentificationKind
impl<'de> Deserialize<'de> for XmpIdentificationKind
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
Source§impl PartialEq for XmpIdentificationKind
impl PartialEq for XmpIdentificationKind
Source§fn eq(&self, other: &XmpIdentificationKind) -> bool
fn eq(&self, other: &XmpIdentificationKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for XmpIdentificationKind
impl Serialize for XmpIdentificationKind
impl Copy for XmpIdentificationKind
impl Eq for XmpIdentificationKind
impl StructuralPartialEq for XmpIdentificationKind
Auto Trait Implementations§
impl Freeze for XmpIdentificationKind
impl RefUnwindSafe for XmpIdentificationKind
impl Send for XmpIdentificationKind
impl Sync for XmpIdentificationKind
impl Unpin for XmpIdentificationKind
impl UnsafeUnpin for XmpIdentificationKind
impl UnwindSafe for XmpIdentificationKind
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