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