pub struct FormFieldValue {
pub field_id: String,
pub captured_label: String,
pub kind: FormFieldKind,
pub value: FormValue,
}Expand description
One value stored in a form record with captured display metadata.
Fields§
§field_id: StringCase-sensitive machine-readable field identifier.
captured_label: StringUser-facing label captured when the value was set.
kind: FormFieldKindField kind used to validate the value.
value: FormValueNormal or secure value payload.
Trait Implementations§
Source§impl Clone for FormFieldValue
impl Clone for FormFieldValue
Source§fn clone(&self) -> FormFieldValue
fn clone(&self) -> FormFieldValue
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 moreAuto Trait Implementations§
impl Freeze for FormFieldValue
impl RefUnwindSafe for FormFieldValue
impl Send for FormFieldValue
impl Sync for FormFieldValue
impl Unpin for FormFieldValue
impl UnsafeUnpin for FormFieldValue
impl UnwindSafe for FormFieldValue
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