pub struct ExecutionContextDestroyed {
pub method: ExecutionContextDestroyedMethod,
pub params: ExecutionContextDestroyedParams,
}Expand description
Issued when execution context is destroyed. executionContextDestroyed
Fields§
§method: ExecutionContextDestroyedMethod§params: ExecutionContextDestroyedParamsImplementations§
Source§impl ExecutionContextDestroyed
impl ExecutionContextDestroyed
pub const IDENTIFIER: &'static str = "Runtime.executionContextDestroyed"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ExecutionContextDestroyed
impl Clone for ExecutionContextDestroyed
Source§fn clone(&self) -> ExecutionContextDestroyed
fn clone(&self) -> ExecutionContextDestroyed
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 ExecutionContextDestroyed
impl Debug for ExecutionContextDestroyed
Source§impl<'de> Deserialize<'de> for ExecutionContextDestroyed
impl<'de> Deserialize<'de> for ExecutionContextDestroyed
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<ExecutionContextDestroyed> for Event
impl From<ExecutionContextDestroyed> for Event
Source§fn from(v: ExecutionContextDestroyed) -> Self
fn from(v: ExecutionContextDestroyed) -> Self
Converts to this type from the input type.
Source§impl From<ExecutionContextDestroyed> for JsProtocolEvents
impl From<ExecutionContextDestroyed> for JsProtocolEvents
Source§fn from(v: ExecutionContextDestroyed) -> Self
fn from(v: ExecutionContextDestroyed) -> Self
Converts to this type from the input type.
Source§impl From<ExecutionContextDestroyed> for RuntimeEvents
impl From<ExecutionContextDestroyed> for RuntimeEvents
Source§fn from(v: ExecutionContextDestroyed) -> Self
fn from(v: ExecutionContextDestroyed) -> Self
Converts to this type from the input type.
Source§impl TryFrom<Event> for ExecutionContextDestroyed
impl TryFrom<Event> for ExecutionContextDestroyed
Source§impl TryFrom<JsProtocolEvents> for ExecutionContextDestroyed
impl TryFrom<JsProtocolEvents> for ExecutionContextDestroyed
Source§type Error = JsProtocolEvents
type Error = JsProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: JsProtocolEvents,
) -> Result<Self, <ExecutionContextDestroyed as TryFrom<JsProtocolEvents>>::Error>
fn try_from( e: JsProtocolEvents, ) -> Result<Self, <ExecutionContextDestroyed as TryFrom<JsProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<RuntimeEvents> for ExecutionContextDestroyed
impl TryFrom<RuntimeEvents> for ExecutionContextDestroyed
Source§type Error = RuntimeEvents
type Error = RuntimeEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: RuntimeEvents,
) -> Result<Self, <ExecutionContextDestroyed as TryFrom<RuntimeEvents>>::Error>
fn try_from( e: RuntimeEvents, ) -> Result<Self, <ExecutionContextDestroyed as TryFrom<RuntimeEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for ExecutionContextDestroyed
Auto Trait Implementations§
impl Freeze for ExecutionContextDestroyed
impl RefUnwindSafe for ExecutionContextDestroyed
impl Send for ExecutionContextDestroyed
impl Sync for ExecutionContextDestroyed
impl Unpin for ExecutionContextDestroyed
impl UnsafeUnpin for ExecutionContextDestroyed
impl UnwindSafe for ExecutionContextDestroyed
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