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