pub struct AddressFormFilled {
pub method: AddressFormFilledMethod,
pub params: AddressFormFilledParams,
}Expand description
Emitted when an address form is filled. addressFormFilled
Fields§
§method: AddressFormFilledMethod§params: AddressFormFilledParamsImplementations§
Source§impl AddressFormFilled
impl AddressFormFilled
pub const IDENTIFIER: &'static str = "Autofill.addressFormFilled"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AddressFormFilled
impl Clone for AddressFormFilled
Source§fn clone(&self) -> AddressFormFilled
fn clone(&self) -> AddressFormFilled
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 AddressFormFilled
impl Debug for AddressFormFilled
Source§impl<'de> Deserialize<'de> for AddressFormFilled
impl<'de> Deserialize<'de> for AddressFormFilled
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
Source§impl From<AddressFormFilled> for AutofillEvents
impl From<AddressFormFilled> for AutofillEvents
Source§fn from(v: AddressFormFilled) -> Self
fn from(v: AddressFormFilled) -> Self
Converts to this type from the input type.
Source§impl From<AddressFormFilled> for BrowserProtocolEvents
impl From<AddressFormFilled> for BrowserProtocolEvents
Source§fn from(v: AddressFormFilled) -> Self
fn from(v: AddressFormFilled) -> Self
Converts to this type from the input type.
Source§impl From<AddressFormFilled> for Event
impl From<AddressFormFilled> for Event
Source§fn from(v: AddressFormFilled) -> Self
fn from(v: AddressFormFilled) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AddressFormFilled
impl PartialEq for AddressFormFilled
Source§impl Serialize for AddressFormFilled
impl Serialize for AddressFormFilled
Source§impl TryFrom<AutofillEvents> for AddressFormFilled
impl TryFrom<AutofillEvents> for AddressFormFilled
Source§type Error = AutofillEvents
type Error = AutofillEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: AutofillEvents,
) -> Result<Self, <AddressFormFilled as TryFrom<AutofillEvents>>::Error>
fn try_from( e: AutofillEvents, ) -> Result<Self, <AddressFormFilled as TryFrom<AutofillEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolEvents> for AddressFormFilled
impl TryFrom<BrowserProtocolEvents> for AddressFormFilled
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <AddressFormFilled as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <AddressFormFilled as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for AddressFormFilled
impl TryFrom<Event> for AddressFormFilled
impl StructuralPartialEq for AddressFormFilled
Auto Trait Implementations§
impl Freeze for AddressFormFilled
impl RefUnwindSafe for AddressFormFilled
impl Send for AddressFormFilled
impl Sync for AddressFormFilled
impl Unpin for AddressFormFilled
impl UnsafeUnpin for AddressFormFilled
impl UnwindSafe for AddressFormFilled
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