pub enum PdfFormFieldType {
Unknown = 0,
PushButton = 1,
Checkbox = 2,
RadioButton = 3,
ComboBox = 4,
ListBox = 5,
Text = 6,
Signature = 7,
}Expand description
The widget display type of a single interactive form field in a PdfForm.
Variants§
Unknown = 0
PushButton = 1
Checkbox = 2
RadioButton = 3
ComboBox = 4
ListBox = 5
Text = 6
Signature = 7
Trait Implementations§
Source§impl Clone for PdfFormFieldType
impl Clone for PdfFormFieldType
Source§fn clone(&self) -> PdfFormFieldType
fn clone(&self) -> PdfFormFieldType
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 PdfFormFieldType
Source§impl Debug for PdfFormFieldType
impl Debug for PdfFormFieldType
Source§impl PartialEq for PdfFormFieldType
impl PartialEq for PdfFormFieldType
Source§fn eq(&self, other: &PdfFormFieldType) -> bool
fn eq(&self, other: &PdfFormFieldType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PdfFormFieldType
impl PartialOrd for PdfFormFieldType
impl StructuralPartialEq for PdfFormFieldType
Auto Trait Implementations§
impl Freeze for PdfFormFieldType
impl RefUnwindSafe for PdfFormFieldType
impl Send for PdfFormFieldType
impl Sync for PdfFormFieldType
impl Unpin for PdfFormFieldType
impl UnsafeUnpin for PdfFormFieldType
impl UnwindSafe for PdfFormFieldType
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