pub struct BackForwardCacheNotUsed {
pub method: BackForwardCacheNotUsedMethod,
pub params: BackForwardCacheNotUsedParams,
}Expand description
Fired for failed bfcache history navigations if BackForwardCache feature is enabled. Do not assume any ordering with the Page.frameNavigated event. This event is fired only for main-frame history navigation where the document changes (non-same-document navigations), when bfcache navigation fails. backForwardCacheNotUsed
Fields§
§method: BackForwardCacheNotUsedMethod§params: BackForwardCacheNotUsedParamsImplementations§
Source§impl BackForwardCacheNotUsed
impl BackForwardCacheNotUsed
pub const IDENTIFIER: &'static str = "Page.backForwardCacheNotUsed"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for BackForwardCacheNotUsed
impl Clone for BackForwardCacheNotUsed
Source§fn clone(&self) -> BackForwardCacheNotUsed
fn clone(&self) -> BackForwardCacheNotUsed
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 BackForwardCacheNotUsed
impl Debug for BackForwardCacheNotUsed
Source§impl<'de> Deserialize<'de> for BackForwardCacheNotUsed
impl<'de> Deserialize<'de> for BackForwardCacheNotUsed
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<BackForwardCacheNotUsed> for BrowserProtocolEvents
impl From<BackForwardCacheNotUsed> for BrowserProtocolEvents
Source§fn from(v: BackForwardCacheNotUsed) -> Self
fn from(v: BackForwardCacheNotUsed) -> Self
Converts to this type from the input type.
Source§impl From<BackForwardCacheNotUsed> for Event
impl From<BackForwardCacheNotUsed> for Event
Source§fn from(v: BackForwardCacheNotUsed) -> Self
fn from(v: BackForwardCacheNotUsed) -> Self
Converts to this type from the input type.
Source§impl From<BackForwardCacheNotUsed> for PageEvents
impl From<BackForwardCacheNotUsed> for PageEvents
Source§fn from(v: BackForwardCacheNotUsed) -> Self
fn from(v: BackForwardCacheNotUsed) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BackForwardCacheNotUsed
impl PartialEq for BackForwardCacheNotUsed
Source§impl Serialize for BackForwardCacheNotUsed
impl Serialize for BackForwardCacheNotUsed
Source§impl TryFrom<BrowserProtocolEvents> for BackForwardCacheNotUsed
impl TryFrom<BrowserProtocolEvents> for BackForwardCacheNotUsed
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, <BackForwardCacheNotUsed as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <BackForwardCacheNotUsed as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for BackForwardCacheNotUsed
impl TryFrom<Event> for BackForwardCacheNotUsed
Source§impl TryFrom<PageEvents> for BackForwardCacheNotUsed
impl TryFrom<PageEvents> for BackForwardCacheNotUsed
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, <BackForwardCacheNotUsed as TryFrom<PageEvents>>::Error>
fn try_from( e: PageEvents, ) -> Result<Self, <BackForwardCacheNotUsed as TryFrom<PageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for BackForwardCacheNotUsed
Auto Trait Implementations§
impl Freeze for BackForwardCacheNotUsed
impl RefUnwindSafe for BackForwardCacheNotUsed
impl Send for BackForwardCacheNotUsed
impl Sync for BackForwardCacheNotUsed
impl Unpin for BackForwardCacheNotUsed
impl UnsafeUnpin for BackForwardCacheNotUsed
impl UnwindSafe for BackForwardCacheNotUsed
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