pub struct ReportingApiReportAdded {
pub method: ReportingApiReportAddedMethod,
pub params: ReportingApiReportAddedParams,
}Expand description
Is sent whenever a new report is added. And after ‘enableReportingApi’ for all existing reports. reportingApiReportAdded
Fields§
§method: ReportingApiReportAddedMethod§params: ReportingApiReportAddedParamsImplementations§
Source§impl ReportingApiReportAdded
impl ReportingApiReportAdded
pub const IDENTIFIER: &'static str = "Network.reportingApiReportAdded"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ReportingApiReportAdded
impl Clone for ReportingApiReportAdded
Source§fn clone(&self) -> ReportingApiReportAdded
fn clone(&self) -> ReportingApiReportAdded
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 ReportingApiReportAdded
impl Debug for ReportingApiReportAdded
Source§impl<'de> Deserialize<'de> for ReportingApiReportAdded
impl<'de> Deserialize<'de> for ReportingApiReportAdded
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<ReportingApiReportAdded> for BrowserProtocolEvents
impl From<ReportingApiReportAdded> for BrowserProtocolEvents
Source§fn from(v: ReportingApiReportAdded) -> Self
fn from(v: ReportingApiReportAdded) -> Self
Converts to this type from the input type.
Source§impl From<ReportingApiReportAdded> for Event
impl From<ReportingApiReportAdded> for Event
Source§fn from(v: ReportingApiReportAdded) -> Self
fn from(v: ReportingApiReportAdded) -> Self
Converts to this type from the input type.
Source§impl From<ReportingApiReportAdded> for NetworkEvents
impl From<ReportingApiReportAdded> for NetworkEvents
Source§fn from(v: ReportingApiReportAdded) -> Self
fn from(v: ReportingApiReportAdded) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ReportingApiReportAdded
impl PartialEq for ReportingApiReportAdded
Source§impl Serialize for ReportingApiReportAdded
impl Serialize for ReportingApiReportAdded
Source§impl TryFrom<BrowserProtocolEvents> for ReportingApiReportAdded
impl TryFrom<BrowserProtocolEvents> for ReportingApiReportAdded
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, <ReportingApiReportAdded as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <ReportingApiReportAdded as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for ReportingApiReportAdded
impl TryFrom<Event> for ReportingApiReportAdded
Source§impl TryFrom<NetworkEvents> for ReportingApiReportAdded
impl TryFrom<NetworkEvents> for ReportingApiReportAdded
Source§type Error = NetworkEvents
type Error = NetworkEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: NetworkEvents,
) -> Result<Self, <ReportingApiReportAdded as TryFrom<NetworkEvents>>::Error>
fn try_from( e: NetworkEvents, ) -> Result<Self, <ReportingApiReportAdded as TryFrom<NetworkEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for ReportingApiReportAdded
Auto Trait Implementations§
impl Freeze for ReportingApiReportAdded
impl RefUnwindSafe for ReportingApiReportAdded
impl Send for ReportingApiReportAdded
impl Sync for ReportingApiReportAdded
impl Unpin for ReportingApiReportAdded
impl UnsafeUnpin for ReportingApiReportAdded
impl UnwindSafe for ReportingApiReportAdded
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