pub struct HtmlForm {
pub name: String,
pub method: String,
pub action: String,
pub inputs: Vec<HtmlInput>,
pub buttons: Vec<HtmlButton>,
}Expand description
Form extracted from HTML.
Fields§
§name: StringForm name or inferred label.
method: StringSubmission method.
action: StringAction target.
inputs: Vec<HtmlInput>Input fields.
Button actions.
Trait Implementations§
impl Eq for HtmlForm
impl StructuralPartialEq for HtmlForm
Auto Trait Implementations§
impl Freeze for HtmlForm
impl RefUnwindSafe for HtmlForm
impl Send for HtmlForm
impl Sync for HtmlForm
impl Unpin for HtmlForm
impl UnsafeUnpin for HtmlForm
impl UnwindSafe for HtmlForm
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