pub struct BindingCalled {
pub method: BindingCalledMethod,
pub params: BindingCalledParams,
}Expand description
Notification is issued every time when binding is called. bindingCalled
Fields§
§method: BindingCalledMethod§params: BindingCalledParamsImplementations§
Source§impl BindingCalled
impl BindingCalled
pub const IDENTIFIER: &'static str = "Runtime.bindingCalled"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for BindingCalled
impl Clone for BindingCalled
Source§fn clone(&self) -> BindingCalled
fn clone(&self) -> BindingCalled
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 BindingCalled
impl Debug for BindingCalled
Source§impl<'de> Deserialize<'de> for BindingCalled
impl<'de> Deserialize<'de> for BindingCalled
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<BindingCalled> for Event
impl From<BindingCalled> for Event
Source§fn from(v: BindingCalled) -> Self
fn from(v: BindingCalled) -> Self
Converts to this type from the input type.
Source§impl From<BindingCalled> for JsProtocolEvents
impl From<BindingCalled> for JsProtocolEvents
Source§fn from(v: BindingCalled) -> Self
fn from(v: BindingCalled) -> Self
Converts to this type from the input type.
Source§impl From<BindingCalled> for RuntimeEvents
impl From<BindingCalled> for RuntimeEvents
Source§fn from(v: BindingCalled) -> Self
fn from(v: BindingCalled) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BindingCalled
impl PartialEq for BindingCalled
Source§impl Serialize for BindingCalled
impl Serialize for BindingCalled
Source§impl TryFrom<Event> for BindingCalled
impl TryFrom<Event> for BindingCalled
Source§impl TryFrom<JsProtocolEvents> for BindingCalled
impl TryFrom<JsProtocolEvents> for BindingCalled
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, <BindingCalled as TryFrom<JsProtocolEvents>>::Error>
fn try_from( e: JsProtocolEvents, ) -> Result<Self, <BindingCalled as TryFrom<JsProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<RuntimeEvents> for BindingCalled
impl TryFrom<RuntimeEvents> for BindingCalled
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, <BindingCalled as TryFrom<RuntimeEvents>>::Error>
fn try_from( e: RuntimeEvents, ) -> Result<Self, <BindingCalled as TryFrom<RuntimeEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for BindingCalled
Auto Trait Implementations§
impl Freeze for BindingCalled
impl RefUnwindSafe for BindingCalled
impl Send for BindingCalled
impl Sync for BindingCalled
impl Unpin for BindingCalled
impl UnsafeUnpin for BindingCalled
impl UnwindSafe for BindingCalled
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