Struct cdp::runtime::ExceptionThrownEvent
[−]
[src]
pub struct ExceptionThrownEvent<'a> { pub timestamp: Timestamp, pub exception_details: ExceptionDetails<'a>, }
Issued when exception was thrown and unhandled.
Event Runtime.exceptionThrown
Domain Module: cdp::runtime
Event Struct: cdp::runtime::ExceptionThrownEvent
Fields
timestamp: Timestamp
Timestamp of the exception.
exception_details: ExceptionDetails<'a>
Trait Implementations
impl<'a> Clone for ExceptionThrownEvent<'a>
[src]
fn clone(&self) -> ExceptionThrownEvent<'a>
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<'a> Debug for ExceptionThrownEvent<'a>
[src]
impl<'a> PartialEq for ExceptionThrownEvent<'a>
[src]
fn eq(&self, __arg_0: &ExceptionThrownEvent<'a>) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ExceptionThrownEvent<'a>) -> bool
[src]
This method tests for !=
.
impl<'a> CdpEvent for ExceptionThrownEvent<'a>
[src]
const EVENT_NAME: &'static str
EVENT_NAME: &'static str = "Runtime.exceptionThrown"
impl<'a> SerializeCdpEvent for ExceptionThrownEvent<'a>
[src]
fn event_name(&self) -> &str
[src]
fn serialize_event_params<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where
S: Serializer,
[src]
S: Serializer,
impl<'de, 'a> DeserializeCdpEvent<'de> for ExceptionThrownEvent<'a>
[src]
fn deserialize_event<D>(
name: &str,
params: D
) -> Result<Result<Self, D::Error>, D> where
D: Deserializer<'de>,
[src]
name: &str,
params: D
) -> Result<Result<Self, D::Error>, D> where
D: Deserializer<'de>,