pub struct FormDataAnalysis {
pub total_fields: usize,
pub credential_fields: Vec<(String, String)>,
pub all_fields: HashMap<String, String>,
}Fields§
§total_fields: usize§credential_fields: Vec<(String, String)>§all_fields: HashMap<String, String>Implementations§
Source§impl FormDataAnalysis
impl FormDataAnalysis
Sourcepub fn print_summary(&self)
pub fn print_summary(&self)
Print a summary of the analysis
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FormDataAnalysis
impl RefUnwindSafe for FormDataAnalysis
impl Send for FormDataAnalysis
impl Sync for FormDataAnalysis
impl Unpin for FormDataAnalysis
impl UnwindSafe for FormDataAnalysis
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