pub struct ExecutionContextCreated {
pub method: ExecutionContextCreatedMethod,
pub params: ExecutionContextCreatedParams,
}Expand description
Issued when new execution context is created. executionContextCreated
Fields§
§method: ExecutionContextCreatedMethod§params: ExecutionContextCreatedParamsImplementations§
Source§impl ExecutionContextCreated
impl ExecutionContextCreated
pub const IDENTIFIER: &'static str = "Runtime.executionContextCreated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ExecutionContextCreated
impl Clone for ExecutionContextCreated
Source§fn clone(&self) -> ExecutionContextCreated
fn clone(&self) -> ExecutionContextCreated
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 ExecutionContextCreated
impl Debug for ExecutionContextCreated
Source§impl<'de> Deserialize<'de> for ExecutionContextCreated
impl<'de> Deserialize<'de> for ExecutionContextCreated
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<ExecutionContextCreated> for Event
impl From<ExecutionContextCreated> for Event
Source§fn from(v: ExecutionContextCreated) -> Self
fn from(v: ExecutionContextCreated) -> Self
Converts to this type from the input type.
Source§impl From<ExecutionContextCreated> for JsProtocolEvents
impl From<ExecutionContextCreated> for JsProtocolEvents
Source§fn from(v: ExecutionContextCreated) -> Self
fn from(v: ExecutionContextCreated) -> Self
Converts to this type from the input type.
Source§impl From<ExecutionContextCreated> for RuntimeEvents
impl From<ExecutionContextCreated> for RuntimeEvents
Source§fn from(v: ExecutionContextCreated) -> Self
fn from(v: ExecutionContextCreated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ExecutionContextCreated
impl PartialEq for ExecutionContextCreated
Source§impl Serialize for ExecutionContextCreated
impl Serialize for ExecutionContextCreated
Source§impl TryFrom<Event> for ExecutionContextCreated
impl TryFrom<Event> for ExecutionContextCreated
Source§impl TryFrom<JsProtocolEvents> for ExecutionContextCreated
impl TryFrom<JsProtocolEvents> for ExecutionContextCreated
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, <ExecutionContextCreated as TryFrom<JsProtocolEvents>>::Error>
fn try_from( e: JsProtocolEvents, ) -> Result<Self, <ExecutionContextCreated as TryFrom<JsProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<RuntimeEvents> for ExecutionContextCreated
impl TryFrom<RuntimeEvents> for ExecutionContextCreated
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, <ExecutionContextCreated as TryFrom<RuntimeEvents>>::Error>
fn try_from( e: RuntimeEvents, ) -> Result<Self, <ExecutionContextCreated as TryFrom<RuntimeEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for ExecutionContextCreated
Auto Trait Implementations§
impl Freeze for ExecutionContextCreated
impl RefUnwindSafe for ExecutionContextCreated
impl Send for ExecutionContextCreated
impl Sync for ExecutionContextCreated
impl Unpin for ExecutionContextCreated
impl UnsafeUnpin for ExecutionContextCreated
impl UnwindSafe for ExecutionContextCreated
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