pub struct FilledField {
pub htmlType: String,
pub id: String,
pub name: String,
pub value: String,
pub autofillType: String,
pub fillingStrategy: FillingStrategy,
pub frameId: FrameId,
pub fieldId: BackendNodeId,
}Fields§
§htmlType: StringThe type of the field, e.g text, password etc.
id: Stringthe html id
name: Stringthe html name
value: Stringthe field value
autofillType: StringThe actual field type, e.g FAMILY_NAME
fillingStrategy: FillingStrategyThe filling strategy
frameId: FrameIdThe frame the field belongs to
fieldId: BackendNodeIdThe form field’s DOM node
Trait Implementations§
Source§impl Clone for FilledField
impl Clone for FilledField
Source§fn clone(&self) -> FilledField
fn clone(&self) -> FilledField
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 moreSource§impl Debug for FilledField
impl Debug for FilledField
Source§impl Default for FilledField
impl Default for FilledField
Source§fn default() -> FilledField
fn default() -> FilledField
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FilledField
impl<'de> Deserialize<'de> for FilledField
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 FilledField
impl RefUnwindSafe for FilledField
impl Send for FilledField
impl Sync for FilledField
impl Unpin for FilledField
impl UnsafeUnpin for FilledField
impl UnwindSafe for FilledField
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