pub struct FormValues(pub Vec<(String, String)>);Expand description
Form field values keyed by a stable selector. Best-effort across engines.
Tuple Fields§
§0: Vec<(String, String)>Trait Implementations§
Source§impl Clone for FormValues
impl Clone for FormValues
Source§fn clone(&self) -> FormValues
fn clone(&self) -> FormValues
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 moreSource§impl Debug for FormValues
impl Debug for FormValues
Source§impl Default for FormValues
impl Default for FormValues
Source§fn default() -> FormValues
fn default() -> FormValues
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for FormValues
impl RefUnwindSafe for FormValues
impl Send for FormValues
impl Sync for FormValues
impl Unpin for FormValues
impl UnsafeUnpin for FormValues
impl UnwindSafe for FormValues
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