pub struct EventReportingApiReportAdded {
pub report: ReportingApiReport,
}Expand description
Is sent whenever a new report is added. And after ‘enableReportingApi’ for all existing reports. reportingApiReportAdded
Fields§
§report: ReportingApiReportImplementations§
source§impl EventReportingApiReportAdded
impl EventReportingApiReportAdded
pub const IDENTIFIER: &'static str = "Network.reportingApiReportAdded"
Trait Implementations§
source§impl Clone for EventReportingApiReportAdded
impl Clone for EventReportingApiReportAdded
source§fn clone(&self) -> EventReportingApiReportAdded
fn clone(&self) -> EventReportingApiReportAdded
Returns a copy 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 EventReportingApiReportAdded
impl Debug for EventReportingApiReportAdded
source§impl<'de> Deserialize<'de> for EventReportingApiReportAdded
impl<'de> Deserialize<'de> for EventReportingApiReportAdded
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<EventReportingApiReportAdded, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<EventReportingApiReportAdded, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<EventReportingApiReportAdded> for CdpEvent
impl From<EventReportingApiReportAdded> for CdpEvent
source§fn from(el: EventReportingApiReportAdded) -> CdpEvent
fn from(el: EventReportingApiReportAdded) -> CdpEvent
Converts to this type from the input type.
source§impl IntoEventKind for EventReportingApiReportAdded
impl IntoEventKind for EventReportingApiReportAdded
source§fn event_kind() -> EventKindwhere
EventReportingApiReportAdded: Sized + 'static,
fn event_kind() -> EventKindwhere EventReportingApiReportAdded: Sized + 'static,
What kind of event this type is
source§impl Method for EventReportingApiReportAdded
impl Method for EventReportingApiReportAdded
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNodesource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMsource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodesource§impl PartialEq<EventReportingApiReportAdded> for EventReportingApiReportAdded
impl PartialEq<EventReportingApiReportAdded> for EventReportingApiReportAdded
source§fn eq(&self, other: &EventReportingApiReportAdded) -> bool
fn eq(&self, other: &EventReportingApiReportAdded) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for EventReportingApiReportAdded
impl Serialize for EventReportingApiReportAdded
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for EventReportingApiReportAdded
Auto Trait Implementations§
impl RefUnwindSafe for EventReportingApiReportAdded
impl Send for EventReportingApiReportAdded
impl Sync for EventReportingApiReportAdded
impl Unpin for EventReportingApiReportAdded
impl UnwindSafe for EventReportingApiReportAdded
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