pub struct CompilationCacheProduced {
pub method: CompilationCacheProducedMethod,
pub params: CompilationCacheProducedParams,
}Expand description
Issued for every compilation cache generated. compilationCacheProduced
Fields§
§method: CompilationCacheProducedMethod§params: CompilationCacheProducedParamsImplementations§
Source§impl CompilationCacheProduced
impl CompilationCacheProduced
pub const IDENTIFIER: &'static str = "Page.compilationCacheProduced"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for CompilationCacheProduced
impl Clone for CompilationCacheProduced
Source§fn clone(&self) -> CompilationCacheProduced
fn clone(&self) -> CompilationCacheProduced
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 CompilationCacheProduced
impl Debug for CompilationCacheProduced
Source§impl<'de> Deserialize<'de> for CompilationCacheProduced
impl<'de> Deserialize<'de> for CompilationCacheProduced
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<CompilationCacheProduced> for BrowserProtocolEvents
impl From<CompilationCacheProduced> for BrowserProtocolEvents
Source§fn from(v: CompilationCacheProduced) -> Self
fn from(v: CompilationCacheProduced) -> Self
Converts to this type from the input type.
Source§impl From<CompilationCacheProduced> for Event
impl From<CompilationCacheProduced> for Event
Source§fn from(v: CompilationCacheProduced) -> Self
fn from(v: CompilationCacheProduced) -> Self
Converts to this type from the input type.
Source§impl From<CompilationCacheProduced> for PageEvents
impl From<CompilationCacheProduced> for PageEvents
Source§fn from(v: CompilationCacheProduced) -> Self
fn from(v: CompilationCacheProduced) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CompilationCacheProduced
impl PartialEq for CompilationCacheProduced
Source§impl Serialize for CompilationCacheProduced
impl Serialize for CompilationCacheProduced
Source§impl TryFrom<BrowserProtocolEvents> for CompilationCacheProduced
impl TryFrom<BrowserProtocolEvents> for CompilationCacheProduced
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, <CompilationCacheProduced as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <CompilationCacheProduced as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for CompilationCacheProduced
impl TryFrom<Event> for CompilationCacheProduced
Source§impl TryFrom<PageEvents> for CompilationCacheProduced
impl TryFrom<PageEvents> for CompilationCacheProduced
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, <CompilationCacheProduced as TryFrom<PageEvents>>::Error>
fn try_from( e: PageEvents, ) -> Result<Self, <CompilationCacheProduced as TryFrom<PageEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for CompilationCacheProduced
Auto Trait Implementations§
impl Freeze for CompilationCacheProduced
impl RefUnwindSafe for CompilationCacheProduced
impl Send for CompilationCacheProduced
impl Sync for CompilationCacheProduced
impl Unpin for CompilationCacheProduced
impl UnsafeUnpin for CompilationCacheProduced
impl UnwindSafe for CompilationCacheProduced
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