pub struct PrefetchStatusUpdated {
pub method: PrefetchStatusUpdatedMethod,
pub params: PrefetchStatusUpdatedParams,
}Expand description
Fired when a prefetch attempt is updated. prefetchStatusUpdated
Fields§
§method: PrefetchStatusUpdatedMethod§params: PrefetchStatusUpdatedParamsImplementations§
Source§impl PrefetchStatusUpdated
impl PrefetchStatusUpdated
pub const IDENTIFIER: &'static str = "Preload.prefetchStatusUpdated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for PrefetchStatusUpdated
impl Clone for PrefetchStatusUpdated
Source§fn clone(&self) -> PrefetchStatusUpdated
fn clone(&self) -> PrefetchStatusUpdated
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 PrefetchStatusUpdated
impl Debug for PrefetchStatusUpdated
Source§impl<'de> Deserialize<'de> for PrefetchStatusUpdated
impl<'de> Deserialize<'de> for PrefetchStatusUpdated
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<PrefetchStatusUpdated> for BrowserProtocolEvents
impl From<PrefetchStatusUpdated> for BrowserProtocolEvents
Source§fn from(v: PrefetchStatusUpdated) -> Self
fn from(v: PrefetchStatusUpdated) -> Self
Converts to this type from the input type.
Source§impl From<PrefetchStatusUpdated> for Event
impl From<PrefetchStatusUpdated> for Event
Source§fn from(v: PrefetchStatusUpdated) -> Self
fn from(v: PrefetchStatusUpdated) -> Self
Converts to this type from the input type.
Source§impl From<PrefetchStatusUpdated> for PreloadEvents
impl From<PrefetchStatusUpdated> for PreloadEvents
Source§fn from(v: PrefetchStatusUpdated) -> Self
fn from(v: PrefetchStatusUpdated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PrefetchStatusUpdated
impl PartialEq for PrefetchStatusUpdated
Source§impl Serialize for PrefetchStatusUpdated
impl Serialize for PrefetchStatusUpdated
Source§impl TryFrom<BrowserProtocolEvents> for PrefetchStatusUpdated
impl TryFrom<BrowserProtocolEvents> for PrefetchStatusUpdated
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, <PrefetchStatusUpdated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <PrefetchStatusUpdated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for PrefetchStatusUpdated
impl TryFrom<Event> for PrefetchStatusUpdated
Source§impl TryFrom<PreloadEvents> for PrefetchStatusUpdated
impl TryFrom<PreloadEvents> for PrefetchStatusUpdated
Source§type Error = PreloadEvents
type Error = PreloadEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: PreloadEvents,
) -> Result<Self, <PrefetchStatusUpdated as TryFrom<PreloadEvents>>::Error>
fn try_from( e: PreloadEvents, ) -> Result<Self, <PrefetchStatusUpdated as TryFrom<PreloadEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for PrefetchStatusUpdated
Auto Trait Implementations§
impl Freeze for PrefetchStatusUpdated
impl RefUnwindSafe for PrefetchStatusUpdated
impl Send for PrefetchStatusUpdated
impl Sync for PrefetchStatusUpdated
impl Unpin for PrefetchStatusUpdated
impl UnsafeUnpin for PrefetchStatusUpdated
impl UnwindSafe for PrefetchStatusUpdated
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