pub struct BindingCalledEvent {
pub name: String,
pub payload: String,
pub execution_context_id: ExecutionContextId,
}Expand description
Event: Runtime.bindingCalled
Fields§
§name: StringBinding name.
payload: StringBinding payload.
execution_context_id: ExecutionContextIdIdentifier of the context where the call was made.
Trait Implementations§
Source§impl Clone for BindingCalledEvent
impl Clone for BindingCalledEvent
Source§fn clone(&self) -> BindingCalledEvent
fn clone(&self) -> BindingCalledEvent
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 BindingCalledEvent
impl Debug for BindingCalledEvent
Source§impl<'de> Deserialize<'de> for BindingCalledEvent
impl<'de> Deserialize<'de> for BindingCalledEvent
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
Auto Trait Implementations§
impl Freeze for BindingCalledEvent
impl RefUnwindSafe for BindingCalledEvent
impl Send for BindingCalledEvent
impl Sync for BindingCalledEvent
impl Unpin for BindingCalledEvent
impl UnwindSafe for BindingCalledEvent
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