pub struct DiscoveredForm {
pub action: String,
pub method: String,
pub inputs: Vec<(String, String)>,
}Expand description
An HTML form discovered during crawling.
Fields§
§action: StringThe form’s action URL (absolute or relative).
method: StringHTTP method (GET, POST, etc.).
inputs: Vec<(String, String)>Input field names and types.
Trait Implementations§
Source§impl Clone for DiscoveredForm
impl Clone for DiscoveredForm
Source§fn clone(&self) -> DiscoveredForm
fn clone(&self) -> DiscoveredForm
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 DiscoveredForm
impl Debug for DiscoveredForm
Source§impl<'de> Deserialize<'de> for DiscoveredForm
impl<'de> Deserialize<'de> for DiscoveredForm
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DiscoveredForm
impl RefUnwindSafe for DiscoveredForm
impl Send for DiscoveredForm
impl Sync for DiscoveredForm
impl Unpin for DiscoveredForm
impl UnsafeUnpin for DiscoveredForm
impl UnwindSafe for DiscoveredForm
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