pub struct FormFieldValue {
pub field_id: String,
pub captured_label: String,
pub kind: FormFieldKind,
pub value: FormValue,
}Fields§
§field_id: String§captured_label: String§kind: FormFieldKind§value: FormValueTrait 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