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