pub enum SharedFormType {
None,
EmailBased,
AcrobatCom,
FilesystemBased,
}Expand description
Type of shared form workflow detected in XMP metadata.
Corresponds to PDFium’s CPDF_Metadata::CheckForSharedForm() which
scans for the Acrobat ad-hoc workflow namespace and extracts the
workflow type.
Variants§
None
No shared form workflow detected.
EmailBased
Email-based workflow (workflowType=0).
AcrobatCom
Acrobat.com-based workflow (workflowType=1).
FilesystemBased
Filesystem-based workflow (workflowType=2).
Trait Implementations§
Source§fn clone(&self) -> SharedFormType
fn clone(&self) -> SharedFormType
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§fn default() -> SharedFormType
fn default() -> SharedFormType
Returns the “default value” for a type. Read more
Auto Trait Implementations§
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