pub struct FdfData {
pub fields: Vec<(String, FieldValue)>,
}Expand description
In-memory FDF (Forms Data Format) data.
Contains a flat list of (field_name, value) pairs extracted from or destined for an interactive form.
Fields§
§fields: Vec<(String, FieldValue)>Field name / value pairs.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FdfData
impl RefUnwindSafe for FdfData
impl Send for FdfData
impl Sync for FdfData
impl Unpin for FdfData
impl UnsafeUnpin for FdfData
impl UnwindSafe for FdfData
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