pub enum FormField {
Text(FormFieldText),
Checkbox(FormFieldCheckbox),
RadioGroup(FormFieldRadioGroup),
Choice(FormFieldChoice),
Signature(FormFieldSignature),
}Expand description
One of the four interactive form field types defined by
§12.7.4. The writer collapses these into the /AcroForm /Fields
array + the per-page /Annots /Subtype /Widget annotations.
Variants§
Text(FormFieldText)
Checkbox(FormFieldCheckbox)
RadioGroup(FormFieldRadioGroup)
Choice(FormFieldChoice)
Signature(FormFieldSignature)
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for FormField
impl !Send for FormField
impl !Sync for FormField
impl !UnwindSafe for FormField
impl Freeze for FormField
impl Unpin for FormField
impl UnsafeUnpin for FormField
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