pub struct ExtractedForm {
pub action: Option<String>,
pub method: String,
pub fields: Vec<FormField>,
}Expand description
A form extracted from HTML.
Fields§
§action: Option<String>§method: String§fields: Vec<FormField>Trait Implementations§
Source§impl Clone for ExtractedForm
impl Clone for ExtractedForm
Source§fn clone(&self) -> ExtractedForm
fn clone(&self) -> ExtractedForm
Returns a duplicate of the value. Read more
1.0.0 · 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 ExtractedForm
impl RefUnwindSafe for ExtractedForm
impl Send for ExtractedForm
impl Sync for ExtractedForm
impl Unpin for ExtractedForm
impl UnsafeUnpin for ExtractedForm
impl UnwindSafe for ExtractedForm
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