pub struct InterstitialShown {
pub method: InterstitialShownMethod,
pub params: InterstitialShownParams,
}Expand description
Fired when interstitial page was shown interstitialShown
Fields§
§method: InterstitialShownMethod§params: InterstitialShownParamsImplementations§
Source§impl InterstitialShown
impl InterstitialShown
pub const IDENTIFIER: &'static str = "Page.interstitialShown"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for InterstitialShown
impl Clone for InterstitialShown
Source§fn clone(&self) -> InterstitialShown
fn clone(&self) -> InterstitialShown
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 InterstitialShown
impl Debug for InterstitialShown
Source§impl<'de> Deserialize<'de> for InterstitialShown
impl<'de> Deserialize<'de> for InterstitialShown
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<InterstitialShown> for BrowserProtocolEvents
impl From<InterstitialShown> for BrowserProtocolEvents
Source§fn from(v: InterstitialShown) -> Self
fn from(v: InterstitialShown) -> Self
Converts to this type from the input type.
Source§impl From<InterstitialShown> for Event
impl From<InterstitialShown> for Event
Source§fn from(v: InterstitialShown) -> Self
fn from(v: InterstitialShown) -> Self
Converts to this type from the input type.
Source§impl From<InterstitialShown> for PageEvents
impl From<InterstitialShown> for PageEvents
Source§fn from(v: InterstitialShown) -> Self
fn from(v: InterstitialShown) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InterstitialShown
impl PartialEq for InterstitialShown
Source§impl Serialize for InterstitialShown
impl Serialize for InterstitialShown
Source§impl TryFrom<BrowserProtocolEvents> for InterstitialShown
impl TryFrom<BrowserProtocolEvents> for InterstitialShown
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, <InterstitialShown as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <InterstitialShown as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for InterstitialShown
impl TryFrom<Event> for InterstitialShown
Source§impl TryFrom<PageEvents> for InterstitialShown
impl TryFrom<PageEvents> for InterstitialShown
Source§type Error = PageEvents
type Error = PageEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: PageEvents,
) -> Result<Self, <InterstitialShown as TryFrom<PageEvents>>::Error>
fn try_from( e: PageEvents, ) -> Result<Self, <InterstitialShown as TryFrom<PageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for InterstitialShown
Auto Trait Implementations§
impl Freeze for InterstitialShown
impl RefUnwindSafe for InterstitialShown
impl Send for InterstitialShown
impl Sync for InterstitialShown
impl Unpin for InterstitialShown
impl UnsafeUnpin for InterstitialShown
impl UnwindSafe for InterstitialShown
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