pub struct HtmlInput {
pub name: String,
pub kind: String,
pub value: Option<String>,
pub required: bool,
}Expand description
Input extracted from a form.
Fields§
§name: StringInput name.
kind: StringInput kind.
value: Option<String>Input value.
required: boolWhether the field is required.
Trait Implementations§
impl Eq for HtmlInput
impl StructuralPartialEq for HtmlInput
Auto Trait Implementations§
impl Freeze for HtmlInput
impl RefUnwindSafe for HtmlInput
impl Send for HtmlInput
impl Sync for HtmlInput
impl Unpin for HtmlInput
impl UnsafeUnpin for HtmlInput
impl UnwindSafe for HtmlInput
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