pub enum AutofillEvents {
AddressFormFilled(AddressFormFilled),
}Variants§
AddressFormFilled(AddressFormFilled)
Implementations§
Source§impl AutofillEvents
impl AutofillEvents
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AutofillEvents
impl Clone for AutofillEvents
Source§fn clone(&self) -> AutofillEvents
fn clone(&self) -> AutofillEvents
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 AutofillEvents
impl Debug for AutofillEvents
Source§impl<'de> Deserialize<'de> for AutofillEvents
impl<'de> Deserialize<'de> for AutofillEvents
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<AutofillEvents> for BrowserProtocolEvents
impl From<AutofillEvents> for BrowserProtocolEvents
Source§fn from(v: AutofillEvents) -> Self
fn from(v: AutofillEvents) -> Self
Converts to this type from the input type.
Source§impl From<AutofillEvents> for Event
impl From<AutofillEvents> for Event
Source§fn from(v: AutofillEvents) -> Self
fn from(v: AutofillEvents) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AutofillEvents
impl PartialEq for AutofillEvents
Source§impl Serialize for AutofillEvents
impl Serialize for AutofillEvents
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 AutofillEvents
impl TryFrom<BrowserProtocolEvents> for AutofillEvents
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, <AutofillEvents as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <AutofillEvents as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for AutofillEvents
impl TryFrom<Event> for AutofillEvents
impl StructuralPartialEq for AutofillEvents
Auto Trait Implementations§
impl Freeze for AutofillEvents
impl RefUnwindSafe for AutofillEvents
impl Send for AutofillEvents
impl Sync for AutofillEvents
impl Unpin for AutofillEvents
impl UnsafeUnpin for AutofillEvents
impl UnwindSafe for AutofillEvents
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